From 3b387eddd986ea81d65769bc0933fc14bf86ab0f Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Sat, 4 Mar 2023 13:29:51 +1100 Subject: [PATCH 01/10] chore: generate pvm from eye clone --- .gitignore | 1 + package.json | 3 ++- scripts/generate-pvm.ts | 15 +-------------- scripts/update.ts | 4 ++-- scripts/util.ts | 31 ------------------------------- 5 files changed, 6 insertions(+), 48 deletions(-) delete mode 100644 scripts/util.ts diff --git a/.gitignore b/.gitignore index 1b2cffb5..9d35a687 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ coverage dist bundle lib/eye.ts +eye/ diff --git a/package.json b/package.json index 75d7b577..51166b24 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,8 @@ "eye:pvm:test": "ts-node scripts/run-pvm", "eye:prepare": "npm run eye:pvm", "eye:update": "ts-node scripts/update", - "perf": "ts-node perf/socrates" + "perf": "ts-node perf/socrates", + "clone:eye": "git clone https://github.com/eyereasoner/eye ./eye --depth 1 --branch $npm_package_config_eye_name" }, "repository": { "type": "git", diff --git a/scripts/generate-pvm.ts b/scripts/generate-pvm.ts index 84e9e5d3..732db45f 100644 --- a/scripts/generate-pvm.ts +++ b/scripts/generate-pvm.ts @@ -6,7 +6,6 @@ import path from 'path'; import type { SWIPLModule } from 'swipl-wasm/dist/common'; import SWIPL from 'swipl-wasm/dist/swipl/swipl-bundle'; import { queryOnce } from '../lib/query'; -import { fetchRetry } from './util'; function Uint8ToString(u8a: any) { const CHUNK_SZ = 0x8000; @@ -17,20 +16,8 @@ function Uint8ToString(u8a: any) { return c.join(''); } -async function eyePlString() { - const EYE_URL = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'package.json')).toString()).config.eye.url; - const releaseInfo = (await (await fetchRetry(EYE_URL)).json()); - const res = (await fetchRetry(`https://raw.githubusercontent.com/eyereasoner/eye/${releaseInfo.tag_name}/eye.pl`)); - - if (res.status !== 200) { - throw new Error(`Error fetching eye.pl: ${await res.text()}`); - } - - return res.text(); -} - async function main() { - const eye = await eyePlString(); + const eye = fs.readFileSync(path.join(__dirname, '..', 'eye', 'eye.pl')).toString(); const Module: SWIPLModule = await SWIPL({ arguments: ['-q', '-f', 'eye.pl'], diff --git a/scripts/update.ts b/scripts/update.ts index 3d56b28d..6a1f8eb9 100644 --- a/scripts/update.ts +++ b/scripts/update.ts @@ -2,10 +2,10 @@ // A script for updating the version reference to eye import * as fs from 'fs'; import path from 'path'; -import { fetchRetry } from './util'; +import { fetch } from 'cross-fetch'; (async () => { - const res = (await fetchRetry('https://api.github.com/repos/eyereasoner/eye/releases/latest')); + const res = (await fetch('https://api.github.com/repos/eyereasoner/eye/releases/latest')); if (res.status === 200) { const pkg = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'package.json')).toString()); const tag = await res.json(); diff --git a/scripts/util.ts b/scripts/util.ts deleted file mode 100644 index 12a1261a..00000000 --- a/scripts/util.ts +++ /dev/null @@ -1,31 +0,0 @@ -/* eslint-disable import/no-extraneous-dependencies, no-await-in-loop, no-console */ -import { fetch } from 'cross-fetch'; - -export async function fetchRetry( - input: RequestInfo | URL, - init?: RequestInit | undefined, -): Promise { - let res: Response | undefined; - let err: unknown | undefined; - - for (let i = 0; i < 5; i += 1) { - try { - res = await fetch(input, init); - - if (res.status === 200) return res; - } catch (e: unknown) { - err = e; - } - - if (i < 4) { - console.warn(`Failed attempt [${i + 1}/5] to fetch ${input}`); - await new Promise((resolve) => { setTimeout(resolve, 2 ** i * 1000); }); - } - } - - if (res) { - return res; - } - - throw err; -} From 722674207c3027d04ade8af95d477a73197457eb Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Sat, 4 Mar 2023 20:49:01 +1100 Subject: [PATCH 02/10] WIP --- __tests__/all-test.ts | 180 +++++++++ package-lock.json | 835 +++++++++++++++++++++++++++++++++++++++++- package.json | 6 +- 3 files changed, 1019 insertions(+), 2 deletions(-) create mode 100644 __tests__/all-test.ts diff --git a/__tests__/all-test.ts b/__tests__/all-test.ts new file mode 100644 index 00000000..15de4c0d --- /dev/null +++ b/__tests__/all-test.ts @@ -0,0 +1,180 @@ +import fs from 'fs'; +import path from 'path'; +import { Parser, Store, DataFactory as DF } from 'n3'; +import { n3reasoner } from '../dist'; +import { mapTerms } from 'rdf-terms'; +import 'jest-rdf'; + +const examplesPath = path.join(__dirname, '..', 'eye', 'reasoning'); +const expectedStart = 'eye "$@"'; +const cacheComponent = ' --wcache http://eyereasoner.github.io/eye/reasoning .. '; +const longStart = expectedStart + cacheComponent; + +const ignoreFolders = [ + // n3reasoner does not support extra images + 'dt', 'image', + // n3reasoner does not support multiquery + 'mq' +]; + +// These exceptions should eventually be removed +const ignoreOutputs = [ + // This complains because `$` is used as a term + 'bi/biA.n3', + // This complains because of https://github.com/rdfjs/N3.js/issues/328 + 'crypto/crypto-proof.n3', + // This just states `true .` but it's not a valid N3 file + 'entail/socrates-check.n3', + // This complains because of https://github.com/rdfjs/N3.js/issues/328 + 'preduction/palindrome-proof.n3', + // This complains because of https://github.com/rdfjs/N3.js/issues/328 + 'preduction/palindrome2-proof.n3', +]; + +function readFile(subPath: string) { + return fs.readFileSync(path.join(examplesPath, subPath)).toString() +} + +function dereference(subPath: string) { + const parser = new Parser({ format: 'text/n3', baseIRI: `http://eyereasoner.github.io/eye/reasoning${subPath}` }); + // @ts-expect-error + parser._supportsRDFStar = true; + return parser.parse(readFile(subPath)); +} + +describe('Testing examples from eye repository', () => { + + for (const folder of fs.readdirSync(examplesPath)) { + if (fs.statSync(path.join(examplesPath, folder)).isDirectory()) { + describe('Testing examples for ' + folder, () => { + for (const testCase of fs.readFileSync(path.join(examplesPath, folder, 'test')).toString().split('\n').slice(1).filter(x => x !== '')) { + let fn = describe; + + if (ignoreFolders.includes(folder)) { + fn = describe.skip; + } else if (!testCase.startsWith(expectedStart)) { + throw new Error(`Found more test case without the expected start of ${expectedStart}`); + } + + let args = testCase.slice(testCase.startsWith(longStart) ? longStart.length : expectedStart.length); + + if (testCase.startsWith(longStart)) { + args = args.replace(/http\:\/\/eyereasoner\.github\.io\/eye\/reasoning\//g, ''); + args = args.replace(/ --turtle/g, ''); + } + + let argsArray = args.trim().split(' '); + + if (argsArray[argsArray.length - 2] !== '--output') { + throw new Error(`Expected --output to be the last argument on ${args}`); + } + + const subPath = path.join(folder, argsArray[argsArray.length - 1]); + + argsArray = argsArray.slice(0, -2) + + // Skip if the output is not a valid N3 file + if (ignoreOutputs.includes(subPath) || !subPath.endsWith('n3')) { + fn = describe.skip; + } + + fn(`should run for [${argsArray.join(' ')}]`, () => { + // it('using string i/o', () => { + + // }); + + // (argsArray[0] === '--blogic' && !argsArray.includes('blogic/socrates-star.n3') ? it : it.skip)('using string i/o', () => { + // return expect(n3reasoner(argsArray.slice(1).map(file => readFile(file)).join('\n'), undefined, { blogic: true, outputType: 'quads' })) + // .resolves + // .toBeRdfIsomorphic(dereference(subPath)); + // }); + + const args = argsArray.filter(arg => arg.startsWith('--')); + + function loadFiles(files: string[]) { + return [...new Store(files.map(file => dereference(file)).flat())] + // Workaround for https://github.com/rdfjs/N3.js/issues/332 + .map(quad => mapTerms(quad, term => term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(/^\./, '')) : term)); + } + + if (args.length === 1 && args[0] === '--blogic' + // Skip socrates-star because it contains '{|' and the PR to support that has not been merged in N3.js + && !argsArray.includes('blogic/socrates-star.n3') + ) { + it('using quad i/o', () => { + return expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + .resolves + .toBeRdfIsomorphic(dereference(subPath)); + }) + } else if (args.length === 1 && args[0] === '--query' && false) { + it.skip('using quad i/o', () => { + return expect( + n3reasoner( + loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--query') && i !== argsArray.indexOf('--query') + 1)), + loadFiles([argsArray[argsArray.indexOf('--query') + 1]])) + ) + .resolves + .toBeRdfIsomorphic(dereference(subPath)); + }) + } else if (args.length === 2 && args.includes('--query') && args.includes('--nope')) { + it('using quad i/o', () => { + return expect( + n3reasoner( + loadFiles(argsArray.filter((_, i) => + i !== argsArray.indexOf('--query') + && i !== argsArray.indexOf('--nope') + && i !== argsArray.indexOf('--query') + 1)), + loadFiles([argsArray[argsArray.indexOf('--query') + 1]])) + ) + .resolves + .toBeRdfIsomorphic(dereference(subPath)); + }) + } else if (args.length === 2 && args.includes('--pass') && args.includes('--nope')) { + it('using quad i/o', () => { + return expect( + n3reasoner( + loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--pass') && i !== argsArray.indexOf('--nope'))), + undefined, + { output: 'deductive_closure' }, + ) + ) + .resolves + .toBeRdfIsomorphic(dereference(subPath)); + }) + } else { + test.todo('using quad i/o') + } + + // let ifn = it; + + // // Skip socrates-star because it contains '{|' and the PR to support that has not been merged in N3.js + // if (argsArray.includes('blogic/socrates-star.n3') || argsArray[0] !== '--blogic') { + // ifn = it.skip; + // } + + + // ifn('using quad i/o', async () => { + // expect(true).toBeTruthy(); + // // const quads = [...new Store(argsArray.slice(1).map(file => dereference(file)).flat())] + // // // Workaround for https://github.com/rdfjs/N3.js/issues/332 + // // .map(quad => mapTerms(quad, term => term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(/^\./, '')) : term)); + + // // return expect(n3reasoner(quads, undefined, { blogic: true })) + // // .resolves + // // .toBeRdfIsomorphic(dereference(subPath)); + // }); + }) + + // if (argsArray.includes('--pass-only-new')) { + // console.log(argsArray, output.length) + // } + + // console.log(testCase) + // process.exit() + } + }) + } + + } + +}); diff --git a/package-lock.json b/package-lock.json index 564606a6..18d6e9c1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "version": "0.0.0", "license": "MIT", "dependencies": { + "@jeswr/pretty-turtle": "^1.4.0", "n3": "^1.16.3", "swipl-wasm": "^3.1.0" }, @@ -39,6 +40,8 @@ "parse-url": "^8.1.0", "playwright": "^1.30.0", "pre-commit": "^1.2.2", + "rdf-parse": "^2.3.1", + "rdf-terms": "^1.9.1", "semantic-release": "^20.1.0", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", @@ -663,6 +666,18 @@ "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, + "node_modules/@bergos/jsonparse": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.1.tgz", + "integrity": "sha512-vXIT0nzZGX/+yMD5bx2VhTzc92H55tPoehh1BW/FZHOndWGFddrH3MAfdx39FRc7irABirW6EQaGxIJYV6CGuA==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ], + "dependencies": { + "buffer": "^6.0.3" + } + }, "node_modules/@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", @@ -673,6 +688,378 @@ "node": ">=0.1.90" } }, + "node_modules/@comunica/actor-abstract-mediatyped": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.6.7.tgz", + "integrity": "sha512-r0hbItzYuARid5xhxsuW+IioFFy5lU964lKnabYwqhhuX+7ue+eYr0Q8wO1WgcgDb8MGbimjlXegT8CzNqpJ5A==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7", + "@comunica/types": "^2.6.7" + } + }, + "node_modules/@comunica/actor-abstract-parse": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.6.7.tgz", + "integrity": "sha512-P1Zfjo3DGgqXVBymPjm200pPEnFq5FO/noQHx12yrYFhpVS/fcaZR/8wKSb3ndzPP5/oH9g+GFhe4p/9XtrI9A==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7", + "readable-stream": "^4.2.0" + } + }, + "node_modules/@comunica/actor-abstract-parse/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@comunica/actor-http-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.6.7.tgz", + "integrity": "sha512-HP5PmR6hVi2exqjx4Af6hJF0a4N96V8hbP2EBvaHwwnXL2jtcMOVEEtG72SgkLiToZdH9Cj5NN9goACr5BVa7g==", + "dev": true, + "dependencies": { + "@comunica/bus-http": "^2.6.7", + "@comunica/context-entries": "^2.6.7", + "@comunica/mediatortype-time": "^2.6.7", + "abort-controller": "^3.0.0", + "cross-fetch": "^3.1.5" + } + }, + "node_modules/@comunica/actor-http-proxy": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.6.7.tgz", + "integrity": "sha512-4ZgANYE+qq1N5ipuRy7/3iL4YiLMsRmytY2u9tbGYg5R3W7m3gt3uIigd7RBof4rkB9fWnYyQEBrrnxGOPYRpw==", + "dev": true, + "dependencies": { + "@comunica/bus-http": "^2.6.7", + "@comunica/context-entries": "^2.6.7", + "@comunica/mediatortype-time": "^2.6.7", + "@comunica/types": "^2.6.7" + } + }, + "node_modules/@comunica/actor-rdf-parse-html": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html/-/actor-rdf-parse-html-2.6.7.tgz", + "integrity": "sha512-KKOD+MDz0EVZ7n2L9XlMgbR+ns2DuIl4ZHuopWnn6XeLOsP7n02XMgmpwy2ZVCVUP6i9H0v95Bw2MXYHmtVAUw==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse": "^2.6.7", + "@comunica/bus-rdf-parse-html": "^2.6.7", + "@comunica/core": "^2.6.7", + "@comunica/types": "^2.6.7", + "@rdfjs/types": "*", + "htmlparser2": "^8.0.1", + "readable-stream": "^4.2.0" + } + }, + "node_modules/@comunica/actor-rdf-parse-html-microdata": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-microdata/-/actor-rdf-parse-html-microdata-2.6.7.tgz", + "integrity": "sha512-tIuSFEqlSvskxErKrkAgEIPtXzA4H16lbjfKxyhw2n6CB7+iunW7cqQdJiKAIDW6DTOhti1t8qPu04olgP91dg==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse-html": "^2.6.7", + "@comunica/core": "^2.6.7", + "microdata-rdf-streaming-parser": "^2.0.1" + } + }, + "node_modules/@comunica/actor-rdf-parse-html-rdfa": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-rdfa/-/actor-rdf-parse-html-rdfa-2.6.7.tgz", + "integrity": "sha512-CTpJqZlx86BXO/LS3E0eY4jJB51Nhyr0GJvK67HvnvnFDheQ0AXZ4to+o9e4sOoJ1xstmNk5c8bWBd8g2bO42Q==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse-html": "^2.6.7", + "@comunica/core": "^2.6.7", + "rdfa-streaming-parser": "^2.0.1" + } + }, + "node_modules/@comunica/actor-rdf-parse-html-script": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-script/-/actor-rdf-parse-html-script-2.6.7.tgz", + "integrity": "sha512-c2SGCqMzKMN1CtF5mzUdI9DPu4mgEDHaSrszvlzfuFhiFpD8nsvRg0Pi06jzxpdHgCHa7isd5CYk8apeYwa4cg==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse": "^2.6.7", + "@comunica/bus-rdf-parse-html": "^2.6.7", + "@comunica/context-entries": "^2.6.7", + "@comunica/core": "^2.6.7", + "@comunica/types": "^2.6.7", + "@rdfjs/types": "*", + "readable-stream": "^4.2.0", + "relative-to-absolute-iri": "^1.0.7" + } + }, + "node_modules/@comunica/actor-rdf-parse-html-script/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@comunica/actor-rdf-parse-html/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@comunica/actor-rdf-parse-jsonld": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-2.6.7.tgz", + "integrity": "sha512-RkUgJGnla8HnCeGC4L7IXuoRFvdq+JOcGZiEvc2rMISfRa/JpFk6EZHDDs6XDQY+Lh036QX46ZnpHk/iM+ScNg==", + "dev": true, + "dependencies": { + "@comunica/bus-http": "^2.6.7", + "@comunica/bus-rdf-parse": "^2.6.7", + "@comunica/context-entries": "^2.6.7", + "@comunica/core": "^2.6.7", + "@comunica/types": "^2.6.7", + "jsonld-context-parser": "^2.2.2", + "jsonld-streaming-parser": "^3.0.1", + "stream-to-string": "^1.2.0" + } + }, + "node_modules/@comunica/actor-rdf-parse-n3": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-2.6.7.tgz", + "integrity": "sha512-Ahk8pc4TyLaLHm2qPNUeFer+ua1XL0I/myEaoj0TPtWO2Dx2S20KWwfzc+Gl2+/o1yi+uyyMqi8E+ftZVL2Xxg==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse": "^2.6.7", + "@comunica/types": "^2.6.7", + "n3": "^1.16.3" + } + }, + "node_modules/@comunica/actor-rdf-parse-rdfxml": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-2.6.7.tgz", + "integrity": "sha512-YH091u0x82sgkoJeGUvdsk7Q8LUJHjIktsZgphSDXzHkp2+Cpt/c8KDfJwPzJ1PW/cRlSyndQi8cpv8RL5kpPw==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse": "^2.6.7", + "@comunica/types": "^2.6.7", + "rdfxml-streaming-parser": "^2.2.1" + } + }, + "node_modules/@comunica/actor-rdf-parse-shaclc": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-shaclc/-/actor-rdf-parse-shaclc-2.6.7.tgz", + "integrity": "sha512-072Y0BGk9YHMlRVoB7PZU6Ge92gbmXmKIyDi7OGcFVsYtQ6difLP6xInXeUhS9Pyv4grGm0VRn8mg6dw8ZkTFw==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse": "^2.6.7", + "@comunica/types": "^2.6.7", + "@rdfjs/types": "*", + "asynciterator": "^3.8.0", + "readable-stream": "^4.2.0", + "shaclc-parse": "^1.3.0", + "stream-to-string": "^1.2.0" + } + }, + "node_modules/@comunica/actor-rdf-parse-shaclc/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@comunica/actor-rdf-parse-xml-rdfa": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-xml-rdfa/-/actor-rdf-parse-xml-rdfa-2.6.7.tgz", + "integrity": "sha512-vo1bqI5zbvhuep40DzLxtUyJzNWCbTvXLkQ4zpLmxzQdtprvl+f0I/SmLXtI+NZ6sTabCUZ+BenSIQ2yYF1nMA==", + "dev": true, + "dependencies": { + "@comunica/bus-rdf-parse": "^2.6.7", + "@comunica/types": "^2.6.7", + "rdfa-streaming-parser": "^2.0.1" + } + }, + "node_modules/@comunica/bus-http": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-2.6.7.tgz", + "integrity": "sha512-3KYLvhD4yrTk7WnyJL/DcaznwFmd3skU5O+JAmIEOpPvmCaxtpFLiPHbIOz+VQwcCfYj5tJbv1oA4kIbHFRD4A==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7", + "is-stream": "^2.0.1", + "readable-stream-node-to-web": "^1.0.1", + "readable-web-to-node-stream": "^3.0.2", + "web-streams-ponyfill": "^1.4.2" + } + }, + "node_modules/@comunica/bus-init": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-2.6.7.tgz", + "integrity": "sha512-1N1Q1WeFBYC8EkoM9pypklKyPsUPuECjDLWZn4VdDOrTs9ueQbmtHbXqhmKthuV65RxIWJNbUItWbmuP+8chnw==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7", + "readable-stream": "^4.2.0" + } + }, + "node_modules/@comunica/bus-init/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@comunica/bus-rdf-parse": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse/-/bus-rdf-parse-2.6.7.tgz", + "integrity": "sha512-7PFb7nLL75Qjqcbah15wPI6GvELxol8imFvKPLkWbkTIM9WoFAYqD8t/39wwDxPAum/CnJHTRE/T9W+vT+dg0Q==", + "dev": true, + "dependencies": { + "@comunica/actor-abstract-mediatyped": "^2.6.7", + "@comunica/actor-abstract-parse": "^2.6.7", + "@comunica/core": "^2.6.7", + "@rdfjs/types": "*" + } + }, + "node_modules/@comunica/bus-rdf-parse-html": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse-html/-/bus-rdf-parse-html-2.6.7.tgz", + "integrity": "sha512-b+Znin6vy539eFb+5NzCdZobLGyJg67Y+OpW79yx6r5n78t4sjehNsYVvRESaZK1oKbOIwj0bfB3i7aQ/ddjQg==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7", + "@rdfjs/types": "*" + } + }, + "node_modules/@comunica/config-query-sparql": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@comunica/config-query-sparql/-/config-query-sparql-2.6.0.tgz", + "integrity": "sha512-Ih02KeThu1RWdiV7JfpD8u0lc3hu547EG5pDhe9igGPjU+ijNbahfJJzKrR7LcJrMTGtydEN+z2allIlBKSftA==", + "dev": true + }, + "node_modules/@comunica/context-entries": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-2.6.7.tgz", + "integrity": "sha512-i+XtftIhOELscMBLPcYBpL85KuStFBOCRZQZwrGVQMYJerQLPa6hvAfwhS19ebak3WK1v226I3/YCHm47tkcjw==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7", + "@comunica/types": "^2.6.7", + "@rdfjs/types": "*", + "jsonld-context-parser": "^2.2.2", + "sparqlalgebrajs": "^4.0.5" + } + }, + "node_modules/@comunica/core": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/core/-/core-2.6.7.tgz", + "integrity": "sha512-AdQHkP3ReAS/6gaoNn3ujhLUZwk2EuFqaSLc8tSW815u6F3OxLbLDi+dNxFOTeGiZoLDCpWPmJuBeg+Dc3jlHA==", + "dev": true, + "dependencies": { + "@comunica/types": "^2.6.7", + "immutable": "^4.1.0" + }, + "engines": { + "node": ">=14.0" + } + }, + "node_modules/@comunica/mediator-combine-pipeline": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/mediator-combine-pipeline/-/mediator-combine-pipeline-2.6.7.tgz", + "integrity": "sha512-SxWU3+XZ1pta9L+TwY4EEEI79xtGfkZ+zqH2rM+QDH5JiK1RFB+couXm2FF4l7+dlwrbLT4dyEqOBd3XX1/o2A==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7", + "@comunica/types": "^2.6.7" + } + }, + "node_modules/@comunica/mediator-combine-union": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/mediator-combine-union/-/mediator-combine-union-2.6.7.tgz", + "integrity": "sha512-By5wUX9dQwkk7ScOzjA5fAa+SHrB0BYJ1rqUiPi7mrYuvq3FBNwCYvtSGbnL4O49D6arHSqDyselscjVAaB8AQ==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7" + } + }, + "node_modules/@comunica/mediator-number": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/mediator-number/-/mediator-number-2.6.7.tgz", + "integrity": "sha512-YnOwGugxGx29vx3AeWyynguV11tYMRSNUHZzIJHzwVUX0PKEy67SkaVzebU2tQi5eYNf8bszL0dtJumoBG3n1A==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7" + } + }, + "node_modules/@comunica/mediator-race": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/mediator-race/-/mediator-race-2.6.7.tgz", + "integrity": "sha512-KpXxA4kP2h3Jfbtw1De9x/YVfzJNLBXnxTRiRfwZiGi9LdY9dl8l85L065D1YDbykiDg/RwB32BFwPlbRyFZMw==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7" + } + }, + "node_modules/@comunica/mediatortype-time": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/mediatortype-time/-/mediatortype-time-2.6.7.tgz", + "integrity": "sha512-CkApj/BDLyjozGI7yf26cu2sL6uvJ2Q+8bF153xhI030UQrU4tXcsKGd3Kuyg21v/jQnF0aSv2VaAiJkfIV45w==", + "dev": true, + "dependencies": { + "@comunica/core": "^2.6.7" + } + }, + "node_modules/@comunica/types": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/@comunica/types/-/types-2.6.7.tgz", + "integrity": "sha512-jdc5lsjHrRwsL+ilQhxfPZSrbfnMP4Vr63DPa9XUY1x0forMTsKID2uGOFU1yXRVPZ/12YSZPKYKpOvOq7E//w==", + "dev": true, + "dependencies": { + "@rdfjs/types": "*", + "@types/yargs": "^17.0.13", + "asynciterator": "^3.8.0", + "sparqlalgebrajs": "^4.0.5" + } + }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", @@ -1155,6 +1542,18 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/@jeswr/pretty-turtle": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@jeswr/pretty-turtle/-/pretty-turtle-1.4.0.tgz", + "integrity": "sha512-i0FSkhuwt9BhSLGpU51bJmR3vmVCzTS+p4keBsdeHSb2GBIcDb+cZKVYqZz3HGkwRPq0UsOSLG5fPEH4IYj6yA==", + "dependencies": { + "n3": "^1.16.3", + "rdf-string-ttl": "^1.3.2" + }, + "peerDependencies": { + "@rdfjs/types": "^1.1.0" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -2146,6 +2545,15 @@ "@types/node": "*" } }, + "node_modules/@types/http-link-header": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@types/http-link-header/-/http-link-header-1.0.3.tgz", + "integrity": "sha512-y8HkoD/vyid+5MrJ3aas0FvU3/BVBGcyG9kgxL0Zn4JwstA8CglFPnrR0RuzOjRCXwqzL5uxWC2IO7Ub0rMU2A==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", @@ -2275,6 +2683,16 @@ "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", "dev": true }, + "node_modules/@types/readable-stream": { + "version": "2.3.15", + "resolved": "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.15.tgz", + "integrity": "sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ==", + "dev": true, + "dependencies": { + "@types/node": "*", + "safe-buffer": "~5.1.1" + } + }, "node_modules/@types/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", @@ -2306,6 +2724,15 @@ "@types/node": "*" } }, + "node_modules/@types/sparqljs": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/sparqljs/-/sparqljs-3.1.3.tgz", + "integrity": "sha512-nmFgmR6ns4i8sg9fYu+293H+PMLKmDOZy34sgwgAeUEEiIqSs4guj5aCZRt3gq1g0yuKXkqrxLDq/684g7pGtQ==", + "dev": true, + "dependencies": { + "rdf-js": "^4.0.2" + } + }, "node_modules/@types/stack-utils": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", @@ -3081,6 +3508,12 @@ "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "dev": true }, + "node_modules/asynciterator": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/asynciterator/-/asynciterator-3.8.0.tgz", + "integrity": "sha512-bD34LqKHJnkB77MHjL3hOAUOcy9dbB+3lHvL+EiJpD3k2Nyq3i1dCk5adMisB2rwlrHVu/+XRhOdPZL9hzpsfw==", + "dev": true + }, "node_modules/asynckit": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", @@ -3506,6 +3939,12 @@ } ] }, + "node_modules/canonicalize": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/canonicalize/-/canonicalize-1.0.8.tgz", + "integrity": "sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A==", + "dev": true + }, "node_modules/cardinal": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", @@ -4265,6 +4704,32 @@ "node": ">=6.0.0" } }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, "node_modules/domexception": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", @@ -4286,6 +4751,35 @@ "node": ">=12" } }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.0.1.tgz", + "integrity": "sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q==", + "dev": true, + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.1" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, "node_modules/dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", @@ -6132,6 +6626,25 @@ "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "node_modules/htmlparser2": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.1.tgz", + "integrity": "sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "entities": "^4.3.0" + } + }, "node_modules/http-basic": { "version": "8.1.3", "resolved": "https://registry.npmjs.org/http-basic/-/http-basic-8.1.3.tgz", @@ -6163,6 +6676,15 @@ "node": ">= 0.8" } }, + "node_modules/http-link-header": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/http-link-header/-/http-link-header-1.1.0.tgz", + "integrity": "sha512-pj6N1yxOz/ANO8HHsWGg/OoIL1kmRYvQnXQ7PIRpgp+15AnEsRH8fmIJE6D1OdWG2Bov+BJHVla1fFXxg1JbbA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/http-proxy-agent": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", @@ -6254,6 +6776,12 @@ "node": ">= 4" } }, + "node_modules/immutable": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.2.4.tgz", + "integrity": "sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w==", + "dev": true + }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", @@ -7612,6 +8140,56 @@ "graceful-fs": "^4.1.6" } }, + "node_modules/jsonld-context-parser": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/jsonld-context-parser/-/jsonld-context-parser-2.3.0.tgz", + "integrity": "sha512-c6w2GE57O26eWFjcPX6k6G86ootsIfpuVwhZKjCll0bVoDGBxr1P4OuU+yvgfnh1GJhAGErolfC7W1BklLjWMg==", + "dev": true, + "dependencies": { + "@types/http-link-header": "^1.0.1", + "@types/node": "^18.0.0", + "canonicalize": "^1.0.1", + "cross-fetch": "^3.0.6", + "http-link-header": "^1.0.2", + "relative-to-absolute-iri": "^1.0.5" + }, + "bin": { + "jsonld-context-parse": "bin/jsonld-context-parse.js" + } + }, + "node_modules/jsonld-streaming-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonld-streaming-parser/-/jsonld-streaming-parser-3.2.0.tgz", + "integrity": "sha512-lJR1SCT364PGpFrOQaY+ZQ7qDWqqiT3IMK+AvZ83fo0LvltFn8/UyXvIFc3RO7YcaEjLahAF0otCi8vOq21NtQ==", + "dev": true, + "dependencies": { + "@bergos/jsonparse": "^1.4.0", + "@rdfjs/types": "*", + "@types/http-link-header": "^1.0.1", + "@types/readable-stream": "^2.3.13", + "buffer": "^6.0.3", + "canonicalize": "^1.0.1", + "http-link-header": "^1.0.2", + "jsonld-context-parser": "^2.3.0", + "rdf-data-factory": "^1.1.0", + "readable-stream": "^4.0.0" + } + }, + "node_modules/jsonld-streaming-parser/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/jsonparse": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", @@ -8023,6 +8601,34 @@ "node": ">= 0.6" } }, + "node_modules/microdata-rdf-streaming-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/microdata-rdf-streaming-parser/-/microdata-rdf-streaming-parser-2.0.1.tgz", + "integrity": "sha512-oEEYP3OwPGOtoE4eIyJvX1eJXI7VkGR4gKYqpEufaRXc2ele/Tkid/KMU3Los13wGrOq6woSxLEGOYSHzpRvwA==", + "dev": true, + "dependencies": { + "@rdfjs/types": "*", + "htmlparser2": "^8.0.0", + "rdf-data-factory": "^1.1.0", + "readable-stream": "^4.1.0", + "relative-to-absolute-iri": "^1.0.2" + } + }, + "node_modules/microdata-rdf-streaming-parser/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", @@ -11635,6 +12241,12 @@ "asap": "~2.0.6" } }, + "node_modules/promise-polyfill": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/promise-polyfill/-/promise-polyfill-1.1.6.tgz", + "integrity": "sha512-7rrONfyLkDEc7OJ5QBkqa4KI4EBhCd340xRuIUPGCfu13znS+vx+VDdrT9ODAJHlXm7w4lbxN3DRjyv58EuzDg==", + "dev": true + }, "node_modules/prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", @@ -11898,7 +12510,6 @@ "version": "1.1.1", "resolved": "https://registry.npmjs.org/rdf-data-factory/-/rdf-data-factory-1.1.1.tgz", "integrity": "sha512-0HoLx7lbBlNd2YTmNKin0txgiYmAV56eVU823at8cG2+iD0Ia5kcRNDpzZy6I/HCtFTymHvTfdhHTzm3ak3Jpw==", - "dev": true, "dependencies": { "@rdfjs/types": "*" } @@ -11924,6 +12535,53 @@ "@rdfjs/types": "*" } }, + "node_modules/rdf-parse": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/rdf-parse/-/rdf-parse-2.3.1.tgz", + "integrity": "sha512-XYK/BKeU6SjL5bUBPo+53Xo1oskvEw/+uk34+Ehi/c/WYBKepeNrwWSgqtGKFGHrlET3qyPdq1QVeJqRn1BpKw==", + "dev": true, + "dependencies": { + "@comunica/actor-http-fetch": "^2.0.1", + "@comunica/actor-http-proxy": "^2.0.1", + "@comunica/actor-rdf-parse-html": "^2.0.1", + "@comunica/actor-rdf-parse-html-microdata": "^2.0.1", + "@comunica/actor-rdf-parse-html-rdfa": "^2.0.1", + "@comunica/actor-rdf-parse-html-script": "^2.0.1", + "@comunica/actor-rdf-parse-jsonld": "^2.0.1", + "@comunica/actor-rdf-parse-n3": "^2.0.1", + "@comunica/actor-rdf-parse-rdfxml": "^2.0.1", + "@comunica/actor-rdf-parse-shaclc": "^2.6.2", + "@comunica/actor-rdf-parse-xml-rdfa": "^2.0.1", + "@comunica/bus-http": "^2.0.1", + "@comunica/bus-init": "^2.0.1", + "@comunica/bus-rdf-parse": "^2.0.1", + "@comunica/bus-rdf-parse-html": "^2.0.1", + "@comunica/config-query-sparql": "^2.0.1", + "@comunica/core": "^2.0.1", + "@comunica/mediator-combine-pipeline": "^2.0.1", + "@comunica/mediator-combine-union": "^2.0.1", + "@comunica/mediator-number": "^2.0.1", + "@comunica/mediator-race": "^2.0.1", + "@rdfjs/types": "*", + "readable-stream": "^4.3.0", + "stream-to-string": "^1.2.0" + } + }, + "node_modules/rdf-parse/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/rdf-string": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.6.2.tgz", @@ -11934,6 +12592,15 @@ "rdf-data-factory": "^1.1.0" } }, + "node_modules/rdf-string-ttl": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/rdf-string-ttl/-/rdf-string-ttl-1.3.2.tgz", + "integrity": "sha512-yqolaVoUvTaSC5aaQuMcB4BL54G/pCGsV4jQH87f0TvAx8zHZG0koh7XWrjva/IPGcVb1QTtaeEdfda5mcddJg==", + "dependencies": { + "@rdfjs/types": "*", + "rdf-data-factory": "^1.1.0" + } + }, "node_modules/rdf-terms": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/rdf-terms/-/rdf-terms-1.9.1.tgz", @@ -11945,6 +12612,65 @@ "rdf-string": "^1.6.0" } }, + "node_modules/rdfa-streaming-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/rdfa-streaming-parser/-/rdfa-streaming-parser-2.0.1.tgz", + "integrity": "sha512-7Yyaj030LO7iQ38Wh/RNLVeYrVFJeyx3dpCK7C1nvX55eIN/gE4HWfbg4BYI9X7Bd+eUIUMVeiKYLmYjV6apow==", + "dev": true, + "dependencies": { + "@rdfjs/types": "*", + "htmlparser2": "^8.0.0", + "rdf-data-factory": "^1.1.0", + "readable-stream": "^4.0.0", + "relative-to-absolute-iri": "^1.0.2" + } + }, + "node_modules/rdfa-streaming-parser/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/rdfxml-streaming-parser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/rdfxml-streaming-parser/-/rdfxml-streaming-parser-2.2.1.tgz", + "integrity": "sha512-1r7aXfSRCLkBYXGcko/GpSZdHxXKvYaeUi2ulEbB7cLvACD7DNoAA/uW6dsETEhgmsEipJZI7NLqBl2whOse8Q==", + "dev": true, + "dependencies": { + "@rdfjs/types": "*", + "@types/readable-stream": "^2.3.13", + "buffer": "^6.0.3", + "rdf-data-factory": "^1.1.0", + "readable-stream": "^4.0.0", + "relative-to-absolute-iri": "^1.0.0", + "saxes": "^6.0.0", + "validate-iri": "^1.0.0" + } + }, + "node_modules/rdfxml-streaming-parser/node_modules/readable-stream": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz", + "integrity": "sha512-MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/react-is": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", @@ -12095,6 +12821,42 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/readable-stream-node-to-web": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/readable-stream-node-to-web/-/readable-stream-node-to-web-1.0.1.tgz", + "integrity": "sha512-OGzi2VKLa8H259kAx7BIwuRrXHGcxeHj4RdASSgEGBP9Q2wowdPvBc65upF4Q9O05qWgKqBw1+9PiLTtObl7uQ==", + "dev": true + }, + "node_modules/readable-web-to-node-stream": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", + "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", + "dev": true, + "dependencies": { + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } + }, + "node_modules/readable-web-to-node-stream/node_modules/readable-stream": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.1.tgz", + "integrity": "sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/rechoir": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", @@ -12170,6 +12932,12 @@ "node": ">=6.0.0" } }, + "node_modules/relative-to-absolute-iri": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/relative-to-absolute-iri/-/relative-to-absolute-iri-1.0.7.tgz", + "integrity": "sha512-Xjyl4HmIzg2jzK/Un2gELqbcE8Fxy85A/aLSHE6PE/3+OGsFwmKVA1vRyGaz6vLWSqLDMHA+5rjD/xbibSQN1Q==", + "dev": true + }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -12885,6 +13653,16 @@ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, + "node_modules/shaclc-parse": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/shaclc-parse/-/shaclc-parse-1.3.0.tgz", + "integrity": "sha512-DOaN9xEMFVRhqmMHhGH5g68/0h93fuJu9oERNgQxDDSYkHVo9SCduVldqHhKFpqUgxwWEoDh1BpN6aHXVU2u1A==", + "dev": true, + "dependencies": { + "@rdfjs/types": "^1.1.0", + "n3": "^1.16.3" + } + }, "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", @@ -13083,6 +13861,40 @@ "source-map": "^0.6.0" } }, + "node_modules/sparqlalgebrajs": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-4.0.5.tgz", + "integrity": "sha512-upGjNvjl5QfEFTBTzp65Lt7D5zsXrVpgJw+4fYgwZdtscegMBM6s+4PNhWaGnuQ80gQyEtD+r4WE2l/yWA+r9A==", + "dev": true, + "dependencies": { + "@rdfjs/types": "*", + "@types/sparqljs": "^3.1.3", + "fast-deep-equal": "^3.1.3", + "minimist": "^1.2.6", + "rdf-data-factory": "^1.1.0", + "rdf-isomorphic": "^1.3.0", + "rdf-string": "^1.6.0", + "sparqljs": "^3.6.1" + }, + "bin": { + "sparqlalgebrajs": "bin/sparqlalgebrajs.js" + } + }, + "node_modules/sparqljs": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.6.2.tgz", + "integrity": "sha512-KQEJPaOMeeDpdYYuiFb3JEErRLL8XqX4G7sdhZyHC6Qn4+PEMUff/EjUGkwcJ6aCC0JCTIgxDpRdE3+GFXpdxw==", + "dev": true, + "dependencies": { + "rdf-data-factory": "^1.1.1" + }, + "bin": { + "sparqljs": "bin/sparql-to-json" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/spawn-error-forwarder": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", @@ -13213,6 +14025,15 @@ "readable-stream": "^2.0.2" } }, + "node_modules/stream-to-string": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/stream-to-string/-/stream-to-string-1.2.1.tgz", + "integrity": "sha512-WsvTDNF8UYs369Yko3pcdTducQtYpzEZeOV7cTuReyFvOoA9S/DLJ6sYK+xPafSPHhUMpaxiljKYnT6JSFztIA==", + "dev": true, + "dependencies": { + "promise-polyfill": "^1.1.6" + } + }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", @@ -14210,6 +15031,12 @@ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", "dev": true }, + "node_modules/validate-iri": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/validate-iri/-/validate-iri-1.0.1.tgz", + "integrity": "sha512-gLXi7351CoyVVQw8XE5sgpYawRKatxE7kj/xmCxXOZS1kMdtcqC0ILIqLuVEVnAUQSL/evOGG3eQ+8VgbdnstA==", + "dev": true + }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -14263,6 +15090,12 @@ "node": ">=10.13.0" } }, + "node_modules/web-streams-ponyfill": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/web-streams-ponyfill/-/web-streams-ponyfill-1.4.2.tgz", + "integrity": "sha512-LCHW+fE2UBJ2vjhqJujqmoxh1ytEDEr0dPO3CabMdMDJPKmsaxzS90V1Ar6LtNE5VHLqxR4YMEj1i4lzMAccIA==", + "dev": true + }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", diff --git a/package.json b/package.json index 51166b24..9bcf1378 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,8 @@ "eye:prepare": "npm run eye:pvm", "eye:update": "ts-node scripts/update", "perf": "ts-node perf/socrates", - "clone:eye": "git clone https://github.com/eyereasoner/eye ./eye --depth 1 --branch $npm_package_config_eye_name" + "clone:eye": "git clone https://github.com/eyereasoner/eye ./eye --depth 1 --branch $npm_package_config_eye_name", + "postinstall": "npm run clone:eye" }, "repository": { "type": "git", @@ -81,6 +82,8 @@ "parse-url": "^8.1.0", "playwright": "^1.30.0", "pre-commit": "^1.2.2", + "rdf-parse": "^2.3.1", + "rdf-terms": "^1.9.1", "semantic-release": "^20.1.0", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", @@ -139,6 +142,7 @@ } }, "dependencies": { + "@jeswr/pretty-turtle": "^1.4.0", "n3": "^1.16.3", "swipl-wasm": "^3.1.0" }, From 3a90dff976c6bb1acc84ed05fb8540429beb39e9 Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Sat, 4 Mar 2023 20:52:30 +1100 Subject: [PATCH 03/10] WIP --- __tests__/all-test.ts | 100 ++++++++++++++++++++---------------------- 1 file changed, 47 insertions(+), 53 deletions(-) diff --git a/__tests__/all-test.ts b/__tests__/all-test.ts index 15de4c0d..438ec216 100644 --- a/__tests__/all-test.ts +++ b/__tests__/all-test.ts @@ -1,8 +1,10 @@ +/* eslint-disable */ +// TODO: Remove the above before merging import fs from 'fs'; import path from 'path'; import { Parser, Store, DataFactory as DF } from 'n3'; -import { n3reasoner } from '../dist'; import { mapTerms } from 'rdf-terms'; +import { n3reasoner } from '../dist'; import 'jest-rdf'; const examplesPath = path.join(__dirname, '..', 'eye', 'reasoning'); @@ -14,7 +16,7 @@ const ignoreFolders = [ // n3reasoner does not support extra images 'dt', 'image', // n3reasoner does not support multiquery - 'mq' + 'mq', ]; // These exceptions should eventually be removed @@ -32,7 +34,7 @@ const ignoreOutputs = [ ]; function readFile(subPath: string) { - return fs.readFileSync(path.join(examplesPath, subPath)).toString() + return fs.readFileSync(path.join(examplesPath, subPath)).toString(); } function dereference(subPath: string) { @@ -43,11 +45,12 @@ function dereference(subPath: string) { } describe('Testing examples from eye repository', () => { - for (const folder of fs.readdirSync(examplesPath)) { if (fs.statSync(path.join(examplesPath, folder)).isDirectory()) { - describe('Testing examples for ' + folder, () => { - for (const testCase of fs.readFileSync(path.join(examplesPath, folder, 'test')).toString().split('\n').slice(1).filter(x => x !== '')) { + describe(`Testing examples for ${folder}`, () => { + for (const testCase of fs.readFileSync(path.join(examplesPath, folder, 'test')).toString().split('\n').slice(1) + .filter((x) => x !== '')) { + // eslint-disable-next-line no-loop-func let fn = describe; if (ignoreFolders.includes(folder)) { @@ -71,10 +74,11 @@ describe('Testing examples from eye repository', () => { const subPath = path.join(folder, argsArray[argsArray.length - 1]); - argsArray = argsArray.slice(0, -2) + argsArray = argsArray.slice(0, -2); // Skip if the output is not a valid N3 file if (ignoreOutputs.includes(subPath) || !subPath.endsWith('n3')) { + // eslint-disable-next-line no-loop-func fn = describe.skip; } @@ -89,60 +93,53 @@ describe('Testing examples from eye repository', () => { // .toBeRdfIsomorphic(dereference(subPath)); // }); - const args = argsArray.filter(arg => arg.startsWith('--')); + const args = argsArray.filter((arg) => arg.startsWith('--')); function loadFiles(files: string[]) { - return [...new Store(files.map(file => dereference(file)).flat())] + return [...new Store(files.map((file) => dereference(file)).flat())] // Workaround for https://github.com/rdfjs/N3.js/issues/332 - .map(quad => mapTerms(quad, term => term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(/^\./, '')) : term)); + .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(/^\./, '')) : term))); } if (args.length === 1 && args[0] === '--blogic' // Skip socrates-star because it contains '{|' and the PR to support that has not been merged in N3.js && !argsArray.includes('blogic/socrates-star.n3') ) { - it('using quad i/o', () => { - return expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) .resolves - .toBeRdfIsomorphic(dereference(subPath)); - }) + .toBeRdfIsomorphic(dereference(subPath))); } else if (args.length === 1 && args[0] === '--query' && false) { - it.skip('using quad i/o', () => { - return expect( - n3reasoner( - loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--query') && i !== argsArray.indexOf('--query') + 1)), - loadFiles([argsArray[argsArray.indexOf('--query') + 1]])) - ) + it.skip('using quad i/o', () => expect( + n3reasoner( + loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--query') && i !== argsArray.indexOf('--query') + 1)), + loadFiles([argsArray[argsArray.indexOf('--query') + 1]]), + ), + ) .resolves - .toBeRdfIsomorphic(dereference(subPath)); - }) + .toBeRdfIsomorphic(dereference(subPath))); } else if (args.length === 2 && args.includes('--query') && args.includes('--nope')) { - it('using quad i/o', () => { - return expect( - n3reasoner( - loadFiles(argsArray.filter((_, i) => - i !== argsArray.indexOf('--query') - && i !== argsArray.indexOf('--nope') + it('using quad i/o', () => expect( + n3reasoner( + loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--query') + && i !== argsArray.indexOf('--nope') && i !== argsArray.indexOf('--query') + 1)), - loadFiles([argsArray[argsArray.indexOf('--query') + 1]])) - ) + loadFiles([argsArray[argsArray.indexOf('--query') + 1]]), + ), + ) .resolves - .toBeRdfIsomorphic(dereference(subPath)); - }) + .toBeRdfIsomorphic(dereference(subPath))); } else if (args.length === 2 && args.includes('--pass') && args.includes('--nope')) { - it('using quad i/o', () => { - return expect( - n3reasoner( - loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--pass') && i !== argsArray.indexOf('--nope'))), - undefined, - { output: 'deductive_closure' }, - ) - ) + it('using quad i/o', () => expect( + n3reasoner( + loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--pass') && i !== argsArray.indexOf('--nope'))), + undefined, + { output: 'deductive_closure' }, + ), + ) .resolves - .toBeRdfIsomorphic(dereference(subPath)); - }) + .toBeRdfIsomorphic(dereference(subPath))); } else { - test.todo('using quad i/o') + test.todo('using quad i/o'); } // let ifn = it; @@ -152,18 +149,17 @@ describe('Testing examples from eye repository', () => { // ifn = it.skip; // } - - // ifn('using quad i/o', async () => { - // expect(true).toBeTruthy(); - // // const quads = [...new Store(argsArray.slice(1).map(file => dereference(file)).flat())] - // // // Workaround for https://github.com/rdfjs/N3.js/issues/332 - // // .map(quad => mapTerms(quad, term => term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(/^\./, '')) : term)); + // ifn('using quad i/o', async () => { + // expect(true).toBeTruthy(); + // // const quads = [...new Store(argsArray.slice(1).map(file => dereference(file)).flat())] + // // // Workaround for https://github.com/rdfjs/N3.js/issues/332 + // // .map(quad => mapTerms(quad, term => term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(/^\./, '')) : term)); // // return expect(n3reasoner(quads, undefined, { blogic: true })) // // .resolves // // .toBeRdfIsomorphic(dereference(subPath)); // }); - }) + }); // if (argsArray.includes('--pass-only-new')) { // console.log(argsArray, output.length) @@ -172,9 +168,7 @@ describe('Testing examples from eye repository', () => { // console.log(testCase) // process.exit() } - }) + }); } - } - }); From 4ac36b235892d31c1d908fd39ec2ba6839b742ab Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Sun, 5 Mar 2023 09:47:15 +1100 Subject: [PATCH 04/10] chore: run blogic tests --- __tests__/all-test.ts | 18 +- abc.n3 | 1 + out.txrt | 9935 +++++++++++++++++++++++++++++++++++++++++ package-lock.json | 1 + package.json | 6 +- 5 files changed, 9955 insertions(+), 6 deletions(-) create mode 100644 abc.n3 create mode 100644 out.txrt diff --git a/__tests__/all-test.ts b/__tests__/all-test.ts index 438ec216..30c4a0bf 100644 --- a/__tests__/all-test.ts +++ b/__tests__/all-test.ts @@ -33,6 +33,8 @@ const ignoreOutputs = [ 'preduction/palindrome2-proof.n3', ]; +let i = 0; + function readFile(subPath: string) { return fs.readFileSync(path.join(examplesPath, subPath)).toString(); } @@ -108,7 +110,7 @@ describe('Testing examples from eye repository', () => { it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) .resolves .toBeRdfIsomorphic(dereference(subPath))); - } else if (args.length === 1 && args[0] === '--query' && false) { + } else if (args.length === 1 && args[0] === '--query') { it.skip('using quad i/o', () => expect( n3reasoner( loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--query') && i !== argsArray.indexOf('--query') + 1)), @@ -118,7 +120,7 @@ describe('Testing examples from eye repository', () => { .resolves .toBeRdfIsomorphic(dereference(subPath))); } else if (args.length === 2 && args.includes('--query') && args.includes('--nope')) { - it('using quad i/o', () => expect( + it.skip('using quad i/o', () => expect( n3reasoner( loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--query') && i !== argsArray.indexOf('--nope') @@ -129,7 +131,7 @@ describe('Testing examples from eye repository', () => { .resolves .toBeRdfIsomorphic(dereference(subPath))); } else if (args.length === 2 && args.includes('--pass') && args.includes('--nope')) { - it('using quad i/o', () => expect( + it.skip('using quad i/o', () => expect( n3reasoner( loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--pass') && i !== argsArray.indexOf('--nope'))), undefined, @@ -138,6 +140,16 @@ describe('Testing examples from eye repository', () => { ) .resolves .toBeRdfIsomorphic(dereference(subPath))); + }else if (args.length === 2 && args.includes('--pass-only-new') && args.includes('--nope')) { + it.skip('using quad i/o', () => expect( + n3reasoner( + loadFiles(argsArray.filter((_, i) => i !== argsArray.indexOf('--pass-only-new') && i !== argsArray.indexOf('--nope'))), + undefined, + { output: 'derivations' }, + ), + ) + .resolves + .toBeRdfIsomorphic(dereference(subPath))); } else { test.todo('using quad i/o'); } diff --git a/abc.n3 b/abc.n3 new file mode 100644 index 00000000..271bdcae --- /dev/null +++ b/abc.n3 @@ -0,0 +1 @@ + a . { a . } . _:n3-1 { {_:n3-3.S a . } . {_:n3-4.S a . } . _:n3-2.S a . } . _:n3-1 _:S . _:n3-1 . _:n3-5 _:S . _:n3-5 _:n3-6 . _:n3-5 {_:n3-7.S a _:n3-7.C . } . _:n3-6 _:C . _:n3-6 . \ No newline at end of file diff --git a/out.txrt b/out.txrt new file mode 100644 index 00000000..acd8ceb9 --- /dev/null +++ b/out.txrt @@ -0,0 +1,9935 @@ +FAIL __tests__/all-test.ts (24.139 s) + Testing examples from eye repository + Testing examples for 3outof5 + should run for [--nope 3outof5/sample.n3 --query 3outof5/query.n3] + ○ skipped using quad i/o + should run for [3outof5/sample.n3 --query 3outof5/query.n3] + ○ skipped using quad i/o + Testing examples for 4color + should run for [--nope --tactic limited-answer 2 4color/4color_data.n3 4color/4color_rules.n3 --query 4color/4color_query.n3] + ✎ todo using quad i/o + should run for [--tactic limited-answer 2 4color/4color_data.n3 4color/4color_rules.n3 --query 4color/4color_query.n3] + ✎ todo using quad i/o + Testing examples for allen + should run for [--nope token.n3 logic.n3 population.n3 allen.n3 eventTime_rules.n3 --query query.n3] + ○ skipped using quad i/o + Testing examples for bcrule + should run for [--nope bcrule/example1.n3 --pass] + ○ skipped using quad i/o + should run for [--nope bcrule/example2.n3 --pass] + ○ skipped using quad i/o + should run for [--nope bcrule/example3.n3 --pass] + ○ skipped using quad i/o + should run for [--nope bcrule/example4.n3 --pass] + ○ skipped using quad i/o + should run for [--nope bcrule/example1.n3 --pass-only-new] + ○ skipped using quad i/o + should run for [--nope bcrule/example2.n3 --pass-only-new] + ○ skipped using quad i/o + should run for [--nope bcrule/example3.n3 --pass-only-new] + ○ skipped using quad i/o + should run for [--nope bcrule/example4.n3 --pass-only-new] + ○ skipped using quad i/o + Testing examples for bi + should run for [--nope bi/biP.n3 --query bi/biQ.n3] + ○ skipped using quad i/o + Testing examples for blogic + should run for [--blogic blogic/abc.n3] + ✕ using quad i/o (144 ms) + should run for [--blogic blogic/abcd.n3] + ✕ using quad i/o (95 ms) + should run for [--blogic blogic/beetle.n3] + ✕ using quad i/o (73 ms) + should run for [--blogic blogic/beetle2.n3] + ✕ using quad i/o (84 ms) + should run for [--blogic blogic/beetle3.n3] + ✕ using quad i/o (76 ms) + should run for [--blogic blogic/beetle4.n3] + ✕ using quad i/o (67 ms) + should run for [--blogic blogic/beetle5.n3] + ✕ using quad i/o (74 ms) + should run for [--blogic blogic/beetle6.n3] + ✕ using quad i/o (88 ms) + should run for [--blogic blogic/beetle6a.n3] + ✕ using quad i/o (81 ms) + should run for [--blogic blogic/beetle7.n3] + ✓ using quad i/o (84 ms) + should run for [--blogic blogic/beetle8.n3] + ✕ using quad i/o (69 ms) + should run for [--blogic blogic/beetle9.n3] + ✕ using quad i/o (81 ms) + should run for [--blogic blogic/beetle9a.n3] + ✕ using quad i/o (69 ms) + should run for [--blogic blogic/beetle10.n3] + ✕ using quad i/o (70 ms) + should run for [--blogic blogic/beetle10a.n3] + ✕ using quad i/o (79 ms) + should run for [--blogic blogic/beetle12.n3] + ✕ using quad i/o (182 ms) + should run for [--blogic blogic/beetle12a.n3] + ✕ using quad i/o (83 ms) + should run for [--blogic blogic/beetle13.n3] + ✕ using quad i/o (76 ms) + should run for [--blogic blogic/beetle14.n3] + ✕ using quad i/o (65 ms) + should run for [--blogic blogic/bmt.n3 bmt/1tt1.ttl bmt/1tt2.ttl bmt/1tt3.ttl bmt/1tt4.ttl bmt/1tt5.ttl bmt/1tt6.ttl bmt/1tt7.ttl bmt/1tt8.ttl bmt/1tt9.ttl bmt/1tt10.ttl] + ✕ using quad i/o (1312 ms) + should run for [--blogic blogic/category.n3] + ✕ using quad i/o (74 ms) + should run for [--blogic blogic/complex.n3] + ✕ using quad i/o (170 ms) + should run for [--blogic blogic/disj.n3] + ✕ using quad i/o (88 ms) + should run for [--blogic blogic/disj2.n3] + ✕ using quad i/o (81 ms) + should run for [--blogic blogic/disj3.n3] + ✕ using quad i/o (116 ms) + should run for [--blogic blogic/disj-elim.n3] + ✕ using quad i/o (71 ms) + should run for [--blogic blogic/equal.n3] + ✕ using quad i/o (84 ms) + should run for [--blogic blogic/eras1.n3] + ✕ using quad i/o (64 ms) + should run for [--blogic blogic/eras2.n3] + ✕ using quad i/o (63 ms) + should run for [--blogic blogic/fibonacci.n3] + ✕ using quad i/o (63 ms) + should run for [--blogic blogic/fuse.n3] + ✓ using quad i/o (76 ms) + should run for [--blogic blogic/gps.n3] + ✕ using quad i/o (184 ms) + should run for [--blogic blogic/gray-code-counter.n3] + ✕ using quad i/o (64 ms) + should run for [--blogic blogic/lubm.n3 lubm/facts.ttl] + ✕ using quad i/o (17387 ms) + should run for [--blogic blogic/parteval.n3] + ✕ using quad i/o (119 ms) + should run for [--blogic blogic/peano.n3] + ✕ using quad i/o (83 ms) + should run for [--blogic blogic/pol1.n3] + ✕ using quad i/o (64 ms) + should run for [--blogic blogic/pol2.n3] + ✕ using quad i/o (64 ms) + should run for [--blogic blogic/qg.n3] + ✓ using quad i/o (83 ms) + should run for [--blogic blogic/rain.n3] + ✕ using quad i/o (70 ms) + should run for [--blogic blogic/sdcoding.n3] + ✕ using quad i/o (67 ms) + should run for [--blogic blogic/slide28a.n3] + ✕ using quad i/o (67 ms) + should run for [--blogic blogic/slide28b.n3] + ✕ using quad i/o (86 ms) + should run for [--blogic blogic/slide32.n3] + ✕ using quad i/o (67 ms) + should run for [--blogic blogic/slide33.n3] + ✕ using quad i/o (80 ms) + should run for [--blogic blogic/skolem-machine.n3] + ✕ using quad i/o (64 ms) + should run for [--blogic blogic/socrates.n3] + ✕ using quad i/o (83 ms) + should run for [--blogic --n3p blogic/socrates.n3p] + ○ skipped using quad i/o + should run for [--blogic blogic/socrates-star.n3] + ✎ todo using quad i/o + should run for [--blogic blogic/spo.n3] + ✓ using quad i/o (69 ms) + should run for [--blogic blogic/turing.n3] + ✕ using quad i/o (144 ms) + should run for [--blogic blogic/uniquant.n3] + ✕ using quad i/o (78 ms) + should run for [--blogic blogic/zebra.n3] + ✕ using quad i/o (223 ms) + Testing examples for bmi + should run for [bmi/bmi_instances.n3 bmi/bmi_rules.n3 bmi/weightStatus_rules.n3 bmi/age_rules_backward.n3 --query bmi/bmi_query.n3] + ○ skipped using quad i/o + Testing examples for bmt + should run for [--turtle bmt/1tt1.ttl bmt/1tt2.ttl bmt/1tt3.ttl bmt/1tt4.ttl bmt/1tt5.ttl bmt/1tt6.ttl bmt/1tt7.ttl bmt/1tt8.ttl bmt/1tt9.ttl bmt/1tt10.ttl --query bmt/query.n3] + ✎ todo using quad i/o + Testing examples for ccd + should run for [--nope ccd/train_data.n3 ccd/background_rules.n3 ccd/train_rules.n3 --query ccd/train_query.n3] + ○ skipped using quad i/o + should run for [ccd/train_data.n3 ccd/background_rules.n3 ccd/train_rules.n3 --query ccd/train_query.n3] + ○ skipped using quad i/o + should run for [--nope ccd/test_data.n3 ccd/train_model.n3 ccd/background_rules.n3 ccd/ccd_rules.n3 --query ccd/test_query.n3] + ○ skipped using quad i/o + should run for [ccd/test_data.n3 ccd/train_model.n3 ccd/background_rules.n3 ccd/ccd_rules.n3 --query ccd/test_query.n3] + ○ skipped using quad i/o + Testing examples for cha58 + should run for [--nope cha58/cha58-data.n3 --blogic cha58/cha58-blogic.n3] + ✎ todo using quad i/o + Testing examples for crypto + should run for [--hmac-key k123 crypto/cryptoP.n3 --pass] + ○ skipped using quad i/o + Testing examples for cs + should run for [--nope cs/data-001.n3 cs/rules-001.n3 --query cs/query-001.n3] + ○ skipped using quad i/o + should run for [cs/data-001.n3 cs/rules-001.n3 --query cs/query-001.n3] + ○ skipped using quad i/o + Testing examples for csv + should run for [--nope csv/select-data.n3 --query csv/select-query.n3 --strings] + ○ skipped using quad i/o + should run for [csv/select-data.n3 --query csv/select-query.n3] + ○ skipped using quad i/o + should run for [csv/select-data-extra.n3 --query csv/select-query.n3] + ○ skipped using quad i/o + Testing examples for dcg + should run for [--nope dcg/dcg.n3 --pass] + ○ skipped using quad i/o + should run for [--nope dcg/dcg2.n3 --pass] + ○ skipped using quad i/o + should run for [--nope dcg/dcg3.n3 --pass] + ○ skipped using quad i/o + Testing examples for de + should run for [de/de.n3 de/deA.n3 --query de/deQ.n3] + ○ skipped using quad i/o + Testing examples for dialogical-reasoning + should run for [--nope dialogical-reasoning/test-dr-ws-result.n3 --pass] + ○ skipped using quad i/o + Testing examples for dp + should run for [--tactic limited-answer 1 dp/dp.n3 --query dp/dpQ.n3] + ✎ todo using quad i/o + Testing examples for dpe + should run for [--tactic limited-answer 1 dpe/dpe_theory.n3 dpe/dpe_assumption.n3 --query dpe/dpe_query.n3] + ✎ todo using quad i/o + Testing examples for dqc + should run for [--no-distinct-output --nope dqc/sdcoding.n3 --query dqc/sdcoding-q.n3] + ✎ todo using quad i/o + should run for [--no-distinct-output dqc/sdcoding.n3 --query dqc/sdcoding-q.n3] + ✎ todo using quad i/o + should run for [--no-distinct-input --nope dqc/sdcoding-a.n3 --query dqc/sdcoding-query.n3] + ✎ todo using quad i/o + should run for [--no-distinct-input dqc/sdcoding-a.n3 --query dqc/sdcoding-query.n3] + ✎ todo using quad i/o + Testing examples for dt + should run for [dtpe.pvm -- "$@" --wcache http://eyereasoner.github.io/eye/reasoning .. --nope http://eyereasoner.github.io/eye/reasoning/dt/test-facts.n3 --query http://eyereasoner.github.io/eye/reasoning/dt/test-query.n3] + ○ skipped using quad i/o + Testing examples for easter + should run for [--nope easter/easterP.n3 --query easter/easterF.n3] + ○ skipped using quad i/o + should run for [easter/easterP.n3 --query easter/easterF.n3] + ○ skipped using quad i/o + Testing examples for edt + should run for [--nope edt/test-facts.ttl edt/test-dl.ttl edt/test-rules.n3 --query edt/test-query.n3] + ○ skipped using quad i/o + Testing examples for entail + should run for [--nope entail/socrates.n3 --entail entail/socrates-claim.n3] + ○ skipped using quad i/o + Testing examples for euq + should run for [--nope euq/euq.n3 --pass-all] + ✎ todo using quad i/o + Testing examples for fcm + should run for [fcm/fcm-plugin.n3 fcm/fl-rules.n3 fcm/example001P.n3 fcm/example002P.n3 --query fcm/example003Q.n3] + ○ skipped using quad i/o + Testing examples for fgcm + should run for [fgcm/fgcm-plugin.n3 fcm/fl-rules.n3 fgcm/patient.n3 fgcm/fgcm-model.n3 --query fgcm/fgcm-query.n3] + ○ skipped using quad i/o + Testing examples for fibonacci + should run for [--nope fibonacci/fibonacci.n3 --query fibonacci/fibonacciQ.n3] + ○ skipped using quad i/o + Testing examples for gcc + should run for [--nope gcc/gcc.n3 --query gcc/gccQ.n3] + ○ skipped using quad i/o + should run for [gcc/gcc.n3 --query gcc/gccQ.n3] + ○ skipped using quad i/o + Testing examples for gedcom + should run for [gedcom/gedcom-facts.n3 gedcom/gedcom-relations.n3 gedcom/rpo-rules.n3 --query gedcom/gedcom-filter.n3] + ○ skipped using quad i/o + Testing examples for glass + should run for [--nope glass/test.n3 --query glass/testQ.n3] + ○ skipped using quad i/o + should run for [glass/test.n3 --query glass/testQ.n3] + ○ skipped using quad i/o + Testing examples for gps + should run for [gps/gps-plugin.n3 gps/gps-example1.n3 --query gps/gps-query1.n3] + ○ skipped using quad i/o + should run for [gps/gps-plugin.n3 gps/gps-example2.n3 --query gps/gps-query2.n3] + ○ skipped using quad i/o + Testing examples for graph + should run for [graph/graph.axiom.n3 graph/rpo-rules.n3 --query graph/graph.filter.n3] + ○ skipped using quad i/o + Testing examples for h2o + should run for [h2o/hypothesis-001.n3 h2o/data-001.n3 h2o/rules-001.n3 --query h2o/query-001.n3] + ○ skipped using quad i/o + Testing examples for hanoi + should run for [--nope hanoi/hanoi.n3 --pass] + ○ skipped using quad i/o + should run for [hanoi/hanoi.n3 --pass] + ✎ todo using quad i/o + Testing examples for image + should run for [ype.pvm -- "$@" --wcache http://eyereasoner.github.io/eye/reasoning .. --query http://eyereasoner.github.io/eye/reasoning/image/query.n3] + ○ skipped using quad i/o + Testing examples for iq + should run for [--nope iq/iq.n3 --pass-all] + ✎ todo using quad i/o + Testing examples for lee + should run for [--nope lee/lee.n3 --query lee/leeQ.n3] + ○ skipped using quad i/o + should run for [lee/lee.n3 --query lee/leeQ.n3] + ○ skipped using quad i/o + Testing examples for lldm + should run for [lldm/lldmD.n3 lldm/lldmP.n3 --query lldm/lldmF.n3] + ○ skipped using quad i/o + Testing examples for lubm + should run for [--nope lubm/facts.ttl lubm/rules.n3 --query lubm/query.n3] + ○ skipped using quad i/o + Testing examples for map + should run for [--nope map/gps-plugin.n3 map/agent1-map.n3 --query map/agent1-query.n3] + ○ skipped using quad i/o + should run for [map/gps-plugin.n3 map/agent1-map.n3 --query map/agent1-query.n3] + ○ skipped using quad i/o + should run for [--nope map/gps-plugin.n3 map/agent2-map.n3 --proof map/agent1-proof.n3 --query map/agent2-query.n3] + ✎ todo using quad i/o + should run for [map/gps-plugin.n3 map/agent2-map.n3 --proof map/agent1-proof.n3 --query map/agent2-query.n3] + ✎ todo using quad i/o + Testing examples for medic + should run for [medic/medic.n3 --query medic/medicF.n3] + ○ skipped using quad i/o + Testing examples for mi + should run for [--nope --tactic limited-answer 5 mi/mi.n3 --query mi/mi-query.n3] + ✎ todo using quad i/o + Testing examples for mmln + should run for [mmln/mmln-gv-example.n3 mmln/mmln-gv-mln.n3 mmln/mmln-plugin.n3 --query mmln/mmln-gv-query.n3] + ○ skipped using quad i/o + Testing examples for mq + should run for [i-query | eye "$@" --wcache http://eyereasoner.github.io/eye/reasoning .. --nope --blogic --turtle http://eyereasoner.github.io/eye/reasoning/mq/data.ttl --multi-query] + ○ skipped using quad i/o + Testing examples for n3-dev + should run for [--nope n3-dev/run-outcome.n3 --pass] + ○ skipped using quad i/o + Testing examples for n3c + should run for [--nope n3c/components.n3 n3c/tasks.n3 --query n3c/notIn_query.n3] + ○ skipped using quad i/o + should run for [--nope n3c/components.n3 n3c/tasks.n3 --query n3c/forAllIn_query.n3] + ○ skipped using quad i/o + should run for [n3c/components.n3 n3c/tasks.n3 --query n3c/notIn_query.n3] + ○ skipped using quad i/o + should run for [n3c/components.n3 n3c/tasks.n3 --query n3c/forAllIn_query.n3] + ○ skipped using quad i/o + Testing examples for n3gl + should run for [--nope n3gl/example.n3 --pass] + ○ skipped using quad i/o + Testing examples for n3patch + should run for [--nope n3patch/sample-data.n3 n3patch/patch-rule.n3 --pass] + ○ skipped using quad i/o + should run for [--nope --blogic n3patch/sample-data.n3 n3patch/patch-surface.n3] + ✎ todo using quad i/o + Testing examples for n3s + should run for [--nope n3s/example.n3 --pass] + ○ skipped using quad i/o + Testing examples for nbbn + should run for [nbbn/nbbn-plugin.n3 nbbn/nbbn-model.n3 --query nbbn/nbbn-query.n3] + ○ skipped using quad i/o + Testing examples for padovan + should run for [--nope padovan/padovan.n3 --query padovan/padovanQ.n3] + ○ skipped using quad i/o + Testing examples for pi + should run for [pi/pi.n3 --query pi/pi-query.n3] + ○ skipped using quad i/o + Testing examples for polygon + should run for [--nope polygon/polygon.n3 --query polygon/polygon_query.n3] + ○ skipped using quad i/o + should run for [polygon/polygon.n3 --query polygon/polygon_query.n3] + ○ skipped using quad i/o + Testing examples for pptbank + should run for [pptbank/bankSW.n3 pptbank/checking.n3 --query pptbank/query.n3] + ○ skipped using quad i/o + Testing examples for preduction + should run for [--nope preduction/palindrome.n3 preduction/palindrome-declarations.n3 preduction/preduction-plugin.n3 --query preduction/palindrome-preduction.n3] + ○ skipped using quad i/o + should run for [preduction/palindrome.n3 --query preduction/palindrome-query.n3] + ○ skipped using quad i/o + should run for [preduction/palindrome2.n3 --query preduction/palindrome2-query.n3] + ○ skipped using quad i/o + should run for [--nope preduction/food.n3 preduction/food-declarations.n3 preduction/preduction-plugin.n3 --query preduction/food-preduction.n3] + ○ skipped using quad i/o + should run for [preduction/food-example.n3 preduction/food.n3 rpo/rdfs-subClassOf.n3 --query preduction/food-query.n3] + ○ skipped using quad i/o + should run for [preduction/food-example.n3 preduction/food2.n3 --query preduction/food-query.n3] + ○ skipped using quad i/o + Testing examples for qgen + should run for [--nope socrates/socrates.n3 --query qgen/qgen.n3] + ○ skipped using quad i/o + should run for [--nope socrates/socrates.n3 --query qgen/query.n3] + ○ skipped using quad i/o + Testing examples for rdf-star + should run for [--nope rdf-star/run-outcome.n3 --pass] + ○ skipped using quad i/o + Testing examples for rdf-star-reasoning + should run for [--nope rdf-star-reasoning/test.n3 --pass] + ○ skipped using quad i/o + should run for [--nope rdf-star-reasoning/socrates.n3 --pass] + ○ skipped using quad i/o + Testing examples for reif + should run for [--nope reif/data.n3 reif/reify.n3 --pass] + ○ skipped using quad i/o + should run for [--nope reif/data-reif.n3 reif/dereify.n3 --pass] + ○ skipped using quad i/o + Testing examples for resto + should run for [--tactic limited-answer 1 resto/resto.n3 --query resto/restoG.n3] + ✎ todo using quad i/o + Testing examples for restpath + should run for [--tactic limited-answer 1 restpath/initial.n3 restpath/path-9-3.n3 --query restpath/goal.n3] + ✎ todo using quad i/o + Testing examples for rgb + should run for [rgb/redgraph001.n3 --query rgb/greenquery001.n3] + ○ skipped using quad i/o + should run for [rgb/redgraph002.n3 --query rgb/greenquery002.n3] + ○ skipped using quad i/o + should run for [rgb/redgraph003.n3 --query rgb/greenquery003.n3] + ○ skipped using quad i/o + Testing examples for rif + should run for [rif/rifP.n3 --query rif/rifQ.n3] + ○ skipped using quad i/o + Testing examples for rpo + should run for [rpo/food-example.n3 rpo/food.n3 rpo/rdfs-subClassOf.n3 --query rpo/food-query.n3] + ○ skipped using quad i/o + Testing examples for rs + should run for [--tactic limited-answer 1 rs/randomsample-rule.n3 --query rs/randomsample-query.n3] + ✎ todo using quad i/o + Testing examples for seq + should run for [--nope seq/seq_components.n3 --query seq/seq_query.n3] + ○ skipped using quad i/o + should run for [seq/seq_components.n3 --query seq/seq_query.n3] + ○ skipped using quad i/o + Testing examples for skos + should run for [skos/skos-mapping-sample-snomed-icd10.n3 skos/skos-mapping-validation-rules.n3 --query skos/skos-mapping-validation-query.n3] + ○ skipped using quad i/o + Testing examples for snaf + should run for [--nope snaf/demo.n3 snaf/rules.n3 --pass] + ○ skipped using quad i/o + should run for [snaf/demo.n3 snaf/rules.n3 --pass] + ✎ todo using quad i/o + Testing examples for socrates + should run for [--nope socrates/socrates.n3 --query socrates/socrates-query.n3] + ○ skipped using quad i/o + should run for [socrates/socrates.n3 --query socrates/socrates-query.n3] + ○ skipped using quad i/o + should run for [--nope --proof socrates/socrates-proof.n3 --pass-only-new] + ✎ todo using quad i/o + Testing examples for socrates-metachain-b2f + should run for [--nope socrates-metachain-b2f/metachain.n3 socrates-metachain-b2f/socrates.n3 --query socrates-metachain-b2f/socrates-query.n3] + ○ skipped using quad i/o + should run for [socrates-metachain-b2f/metachain.n3 socrates-metachain-b2f/socrates.n3 --query socrates-metachain-b2f/socrates-query.n3] + ○ skipped using quad i/o + Testing examples for socrates-metachain-f2b + should run for [--nope socrates-metachain-f2b/metachain.n3 socrates-metachain-f2b/socrates.n3 --query socrates-metachain-f2b/socrates-query.n3] + ○ skipped using quad i/o + should run for [socrates-metachain-f2b/metachain.n3 socrates-metachain-f2b/socrates.n3 --query socrates-metachain-f2b/socrates-query.n3] + ○ skipped using quad i/o + Testing examples for swet + should run for [--nope swet/swetA.n3 swet/swetD.n3 --query=swet/swetQ01.n3] + ✎ todo using quad i/o + should run for [--nope swet/swetA.n3 swet/swetD.n3 --query=swet/swetQ11.n3] + ✎ todo using quad i/o + should run for [--nope swet/swetA.n3 swet/swetD.n3 --query=swet/swetQ21.n3] + ✎ todo using quad i/o + should run for [--nope swet/swetA.n3 swet/swetD.n3 --query=swet/swetQ31.n3] + ✎ todo using quad i/o + Testing examples for tak + should run for [--nope tak/tak.n3 --query tak/takQ.n3] + ○ skipped using quad i/o + should run for [tak/tak.n3 --query tak/takQ.n3] + ○ skipped using quad i/o + Testing examples for tfcontext + should run for [tfcontext/data-001.n3 tfcontext/rules-001.n3 --query tfcontext/query-001.n3] + ○ skipped using quad i/o + Testing examples for ttl-to-rdfa + should run for [--nope ttl-to-rdfa/ttl-to-rdfa.n3 ttl-to-rdfa/health_schema_org.ttl --strings] + ○ skipped using quad i/o + Testing examples for turing + should run for [turing/turing.n3 --query turing/turingQ.n3] + ○ skipped using quad i/o + Testing examples for turtle-dev + should run for [--nope turtle-dev/run-outcome.n3 --pass] + ○ skipped using quad i/o + Testing examples for twf + should run for [--nope twf/example27.n3 --pass] + ○ skipped using quad i/o + should run for [twf/example27.n3 --pass] + ✎ todo using quad i/o + should run for [--nope twf/example28.n3 --pass] + ○ skipped using quad i/o + should run for [twf/example28.n3 --pass] + ✎ todo using quad i/o + Testing examples for usm + should run for [--tactic limited-answer 1 usm/usmP.n3 --query usm/usmQ.n3] + ✎ todo using quad i/o + Testing examples for utf8 + should run for [utf8/utf8.n3 --pass] + ✎ todo using quad i/o + Testing examples for witch + should run for [witch/witch.n3 --query witch/witch-goal.n3] + ○ skipped using quad i/o + Testing examples for zebra + should run for [zebra/zebra.n3 --query zebra/zebraQ.n3] + ○ skipped using quad i/o + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/abc.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#A","graph":""}, + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#B","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#A","graph":""}, + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#B","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/abcd.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#A","graph":""}, + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#B","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#A","graph":""}, + {"subject":"http://example.org/ns#i","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#B","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle2.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle3.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle4.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle5.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle6.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#nice","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#nice","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle6a.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#nice","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#nice","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle8.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle9.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle9a.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle10.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":""}, + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#bob","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#mars","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":""}, + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#bob","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#mars","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle10a.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":""}, + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#bob","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#mars","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Car","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Person","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Apple","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Planet","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#is","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#green","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beautiful","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-220","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_A_1","graph":""}, + {"subject":"_:n3-220","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-220","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-221.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":"_:n3-221"}, + {"subject":"_:n3-222.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-222"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-222","graph":"_:n3-221"}, + {"subject":"_:n3-221","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-224.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":"_:n3-224"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-224","graph":"_:n3-223"}, + {"subject":"_:n3-225.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-225"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-225","graph":"_:n3-223"}, + {"subject":"_:n3-223","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-226","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_S_1","graph":""}, + {"subject":"_:n3-226","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-227","graph":""}, + {"subject":"_:n3-227","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_P_1","graph":""}, + {"subject":"_:n3-227","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-228","graph":""}, + {"subject":"_:n3-228","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_O_1","graph":""}, + {"subject":"_:n3-228","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-226","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-229.e_S_1","predicate":"_:n3-229.e_P_1","object":"_:n3-229.e_O_1","graph":"_:n3-229"}, + {"subject":"_:n3-230.e_S_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"}, + {"subject":"_:n3-230.e_P_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"}, + {"subject":"_:n3-230.e_O_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-230","graph":"_:n3-229"}, + {"subject":"_:n3-229","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-232.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-232"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-232","graph":"_:n3-231"}, + {"subject":"_:n3-233.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-233"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-233","graph":"_:n3-231"}, + {"subject":"_:n3-231","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-234","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_S_1","graph":""}, + {"subject":"_:n3-234","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-235","graph":""}, + {"subject":"_:n3-235","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_O_1","graph":""}, + {"subject":"_:n3-235","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-234","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/2000/10/swap/log#onQuerySurface","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"_:n3-236.e_S_1","predicate":"http://example.org/ns#is","object":"_:n3-236.e_O_1","graph":"_:n3-236"}, + {"subject":"_:n3-236","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/2000/01/rdf-schema#Resource","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":""}, + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#bob","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#mars","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Car","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Person","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Apple","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#Planet","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#is","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#green","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beautiful","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/2000/10/swap/log#onQuerySurface","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://www.w3.org/2000/01/rdf-schema#Resource","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + _:n3-220 : [ + {"subject":"_:n3-220","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_A_1","graph":""}, + {"subject":"_:n3-220","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-220","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + _:.e_A_1 : [ + {"subject":"_:n3-220","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_A_1","graph":""} + ] + _:n3-221.e_A_1 : [ + {"subject":"_:n3-221.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":"_:n3-221"} + ] + _:n3-221 : [ + {"subject":"_:n3-221.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":"_:n3-221"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-222","graph":"_:n3-221"}, + {"subject":"_:n3-221","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + _:n3-222.e_A_1 : [ + {"subject":"_:n3-222.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-222"} + ] + _:n3-222 : [ + {"subject":"_:n3-222.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-222"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-222","graph":"_:n3-221"} + ] + _:n3-224.e_A_1 : [ + {"subject":"_:n3-224.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":"_:n3-224"} + ] + _:n3-224 : [ + {"subject":"_:n3-224.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#green","graph":"_:n3-224"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-224","graph":"_:n3-223"} + ] + _:n3-223 : [ + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-224","graph":"_:n3-223"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-225","graph":"_:n3-223"}, + {"subject":"_:n3-223","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + _:n3-225.e_A_1 : [ + {"subject":"_:n3-225.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-225"} + ] + _:n3-225 : [ + {"subject":"_:n3-225.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-225"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-225","graph":"_:n3-223"} + ] + _:n3-226 : [ + {"subject":"_:n3-226","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_S_1","graph":""}, + {"subject":"_:n3-226","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-227","graph":""}, + {"subject":"_:n3-226","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + _:.e_S_1 : [ + {"subject":"_:n3-226","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_S_1","graph":""}, + {"subject":"_:n3-234","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_S_1","graph":""} + ] + _:n3-227 : [ + {"subject":"_:n3-226","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-227","graph":""}, + {"subject":"_:n3-227","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_P_1","graph":""}, + {"subject":"_:n3-227","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-228","graph":""} + ] + _:.e_P_1 : [ + {"subject":"_:n3-227","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_P_1","graph":""} + ] + _:n3-228 : [ + {"subject":"_:n3-227","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-228","graph":""}, + {"subject":"_:n3-228","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_O_1","graph":""}, + {"subject":"_:n3-228","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""} + ] + _:.e_O_1 : [ + {"subject":"_:n3-228","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_O_1","graph":""}, + {"subject":"_:n3-235","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_O_1","graph":""} + ] + _:n3-229.e_S_1 : [ + {"subject":"_:n3-229.e_S_1","predicate":"_:n3-229.e_P_1","object":"_:n3-229.e_O_1","graph":"_:n3-229"} + ] + _:n3-229.e_P_1 : [ + {"subject":"_:n3-229.e_S_1","predicate":"_:n3-229.e_P_1","object":"_:n3-229.e_O_1","graph":"_:n3-229"} + ] + _:n3-229.e_O_1 : [ + {"subject":"_:n3-229.e_S_1","predicate":"_:n3-229.e_P_1","object":"_:n3-229.e_O_1","graph":"_:n3-229"} + ] + _:n3-229 : [ + {"subject":"_:n3-229.e_S_1","predicate":"_:n3-229.e_P_1","object":"_:n3-229.e_O_1","graph":"_:n3-229"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-230","graph":"_:n3-229"}, + {"subject":"_:n3-229","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + _:n3-230.e_S_1 : [ + {"subject":"_:n3-230.e_S_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"} + ] + _:n3-230 : [ + {"subject":"_:n3-230.e_S_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"}, + {"subject":"_:n3-230.e_P_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"}, + {"subject":"_:n3-230.e_O_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-230","graph":"_:n3-229"} + ] + _:n3-230.e_P_1 : [ + {"subject":"_:n3-230.e_P_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"} + ] + _:n3-230.e_O_1 : [ + {"subject":"_:n3-230.e_O_1","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2000/01/rdf-schema#Resource","graph":"_:n3-230"} + ] + _:n3-232.e_A_1 : [ + {"subject":"_:n3-232.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-232"} + ] + _:n3-232 : [ + {"subject":"_:n3-232.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-232"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-232","graph":"_:n3-231"} + ] + _:n3-231 : [ + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-232","graph":"_:n3-231"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-233","graph":"_:n3-231"}, + {"subject":"_:n3-231","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + _:n3-233.e_A_1 : [ + {"subject":"_:n3-233.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-233"} + ] + _:n3-233 : [ + {"subject":"_:n3-233.e_A_1","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":"_:n3-233"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-233","graph":"_:n3-231"} + ] + _:n3-234 : [ + {"subject":"_:n3-234","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_S_1","graph":""}, + {"subject":"_:n3-234","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-235","graph":""}, + {"subject":"_:n3-234","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + _:n3-235 : [ + {"subject":"_:n3-234","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-235","graph":""}, + {"subject":"_:n3-235","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.e_O_1","graph":""}, + {"subject":"_:n3-235","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""} + ] + _:n3-236.e_S_1 : [ + {"subject":"_:n3-236.e_S_1","predicate":"http://example.org/ns#is","object":"_:n3-236.e_O_1","graph":"_:n3-236"} + ] + _:n3-236.e_O_1 : [ + {"subject":"_:n3-236.e_S_1","predicate":"http://example.org/ns#is","object":"_:n3-236.e_O_1","graph":"_:n3-236"} + ] + _:n3-236 : [ + {"subject":"_:n3-236.e_S_1","predicate":"http://example.org/ns#is","object":"_:n3-236.e_O_1","graph":"_:n3-236"}, + {"subject":"_:n3-236","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle12.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle12a.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle13.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#herbie","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#something","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#sky","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#herbie","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#grannysmith","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#something","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#sky","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""}, + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/beetle14.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#herbie","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#herbie","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/bmt.n3 bmt/1tt1.ttl bmt/1tt2.ttl bmt/1tt3.ttl bmt/1tt4.ttl bmt/1tt5.ttl bmt/1tt6.ttl bmt/1tt7.ttl bmt/1tt8.ttl bmt/1tt9.ttl bmt/1tt10.ttl] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** eam ** error(permission_error(modify,static_procedure,(,)/2),context(system:assertz/1,_6292))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/category.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C3","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C3","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C2","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C3","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C3","graph":""}, + {"subject":"<>","predicate":"http://example.org/ns#category","object":"http://example.org/ns#C1","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/complex.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** eam ** error(permission_error(modify,static_procedure,(,)/2),context(system:assertz/1,_12772))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/disj.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#grass","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#FarmingField","graph":""}, + {"subject":"http://example.org/ns#grass","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#GreenColored","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#grass","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#FarmingField","graph":""}, + {"subject":"http://example.org/ns#grass","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#GreenColored","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/disj2.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C0","graph":""}, + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C2","graph":""}, + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C22","graph":""}, + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C222","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C0","graph":""}, + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C2","graph":""}, + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C22","graph":""}, + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C222","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/disj3.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C0","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#abc","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#C0","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/disj-elim.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#bob","predicate":"http://example.org/ns#saying","object":"http://example.org/ns#C","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#bob","predicate":"http://example.org/ns#saying","object":"http://example.org/ns#C","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/equal.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"urn:example:test","predicate":"urn:example:is","object":"\"true\"^^http://www.w3.org/2001/XMLSchema#boolean","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"urn:example:test","predicate":"urn:example:is","object":"\"true\"^^http://www.w3.org/2001/XMLSchema#boolean","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/eras1.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"urn:example:A","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"urn:example:AA","graph":"_:n3-16056"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-16056","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + _:n3-16056 : [ + {"subject":"urn:example:A","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"urn:example:AA","graph":"_:n3-16056"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-16056","graph":""} + ] + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/eras2.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"urn:example:A","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"urn:example:AA","graph":"_:n3-16064"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-16064","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + _:n3-16064 : [ + {"subject":"urn:example:A","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"urn:example:AA","graph":"_:n3-16064"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-16064","graph":""} + ] + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/fibonacci.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** file:///data.nq ** illegal_token(char_code(/,47),line(1))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/gps.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** eam ** error(permission_error(modify,static_procedure,(,)/2),context(system:assertz/1,_9948))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/gray-code-counter.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** file:///data.nq ** illegal_token(char_code(/,47),line(1))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/lubm.n3 lubm/facts.ttl] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://www.example.org/Department0-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University462","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University223","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department0-University0-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department0-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department0-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department0-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department0-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University190","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department0-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University968","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department0-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University279","graph":""}, + {"subject":"http://www.example.org/Department0-University7-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University516","graph":""}, + {"subject":"http://www.example.org/Department0-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University498","graph":""}, + {"subject":"http://www.example.org/Department0-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University182","graph":""}, + {"subject":"http://www.example.org/Department0-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department0-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department10-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University828","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department10-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department10-University2-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department10-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department10-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department10-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department10-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department10-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department10-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department10-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department10-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department10-University5-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University843","graph":""}, + {"subject":"http://www.example.org/Department10-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department10-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department10-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University446","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University170","graph":""}, + {"subject":"http://www.example.org/Department10-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department10-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department10-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department10-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University118","graph":""}, + {"subject":"http://www.example.org/Department10-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department10-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University153","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University161","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department11-University0-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University927","graph":""}, + {"subject":"http://www.example.org/Department11-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department11-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University987","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department11-University2-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University289","graph":""}, + {"subject":"http://www.example.org/Department11-University3-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University825","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University627","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University42","graph":""}, + {"subject":"http://www.example.org/Department11-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department11-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department11-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department11-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department11-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department11-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department11-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University667","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department11-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department11-University8-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University591","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department11-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University478","graph":""}, + {"subject":"http://www.example.org/Department12-University0-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University175","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department12-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University952","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University172","graph":""}, + {"subject":"http://www.example.org/Department12-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University344","graph":""}, + {"subject":"http://www.example.org/Department12-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University140","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department12-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University573","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University983","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University109","graph":""}, + {"subject":"http://www.example.org/Department12-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University138","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University151","graph":""}, + {"subject":"http://www.example.org/Department12-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University607","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University610","graph":""}, + {"subject":"http://www.example.org/Department12-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University514","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University925","graph":""}, + {"subject":"http://www.example.org/Department12-University7-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department12-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University375","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University321","graph":""}, + {"subject":"http://www.example.org/Department12-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department13-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University178","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University919","graph":""}, + {"subject":"http://www.example.org/Department13-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department13-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department13-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University921","graph":""}, + {"subject":"http://www.example.org/Department13-University2-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University515","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University619","graph":""}, + {"subject":"http://www.example.org/Department13-University3-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department13-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University119","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department13-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department13-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department13-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University155","graph":""}, + {"subject":"http://www.example.org/Department13-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University292","graph":""}, + {"subject":"http://www.example.org/Department13-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department13-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University311","graph":""}, + {"subject":"http://www.example.org/Department13-University7-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University220","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University429","graph":""}, + {"subject":"http://www.example.org/Department13-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department13-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University953","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department14-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University412","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University940","graph":""}, + {"subject":"http://www.example.org/Department14-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University869","graph":""}, + {"subject":"http://www.example.org/Department14-University3-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department14-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department14-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University73","graph":""}, + {"subject":"http://www.example.org/Department14-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University761","graph":""}, + {"subject":"http://www.example.org/Department14-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University18","graph":""}, + {"subject":"http://www.example.org/Department14-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department14-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University18","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University94","graph":""}, + {"subject":"http://www.example.org/Department14-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department14-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University233","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department14-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department15-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department15-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department15-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department15-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University928","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University498","graph":""}, + {"subject":"http://www.example.org/Department15-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University524","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department15-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University236","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department15-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department15-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University95","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University500","graph":""}, + {"subject":"http://www.example.org/Department15-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University356","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department16-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University47","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University762","graph":""}, + {"subject":"http://www.example.org/Department16-University3-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University317","graph":""}, + {"subject":"http://www.example.org/Department16-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University990","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department16-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University232","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department16-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University769","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department16-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University458","graph":""}, + {"subject":"http://www.example.org/Department16-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University48","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department16-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University29","graph":""}, + {"subject":"http://www.example.org/Department16-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University523","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department17-University1-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department17-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department17-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department17-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department17-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University184","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department17-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University122","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department18-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department18-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department18-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University930","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department18-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University585","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department18-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University13","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department19-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department19-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University843","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department19-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University109","graph":""}, + {"subject":"http://www.example.org/Department19-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University413","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department1-University1-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University973","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University583","graph":""}, + {"subject":"http://www.example.org/Department1-University2-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University959","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department1-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University514","graph":""}, + {"subject":"http://www.example.org/Department1-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University437","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department1-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department1-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department1-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department1-University7-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University795","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department1-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University91","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department1-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department20-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department20-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department20-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department20-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University433","graph":""}, + {"subject":"http://www.example.org/Department21-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department21-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department21-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department22-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department23-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University150","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department2-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department2-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University735","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University54","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department2-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department2-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department2-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department2-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University731","graph":""}, + {"subject":"http://www.example.org/Department2-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University829","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University255","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department2-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University221","graph":""}, + {"subject":"http://www.example.org/Department2-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University663","graph":""}, + {"subject":"http://www.example.org/Department2-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University316","graph":""}, + {"subject":"http://www.example.org/Department2-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University393","graph":""}, + {"subject":"http://www.example.org/Department2-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department2-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University182","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department2-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University232","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department3-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department3-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department3-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department3-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University717","graph":""}, + {"subject":"http://www.example.org/Department3-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department3-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department3-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University54","graph":""}, + {"subject":"http://www.example.org/Department3-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University19","graph":""}, + {"subject":"http://www.example.org/Department3-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department3-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University757","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University837","graph":""}, + {"subject":"http://www.example.org/Department3-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University548","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University415","graph":""}, + {"subject":"http://www.example.org/Department3-University6-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University49","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department3-University7-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department3-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University321","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University498","graph":""}, + {"subject":"http://www.example.org/Department3-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University952","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University127","graph":""}, + {"subject":"http://www.example.org/Department4-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department4-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department4-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department4-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University162","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University468","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University798","graph":""}, + {"subject":"http://www.example.org/Department4-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University49","graph":""}, + {"subject":"http://www.example.org/Department4-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department4-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University525","graph":""}, + {"subject":"http://www.example.org/Department4-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University74","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department4-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department4-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University781","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department4-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department4-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department4-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department4-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University146","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department4-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University916","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University932","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department5-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department5-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University808","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department5-University2-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University55","graph":""}, + {"subject":"http://www.example.org/Department5-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department5-University4-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University588","graph":""}, + {"subject":"http://www.example.org/Department5-University5-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University311","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University242","graph":""}, + {"subject":"http://www.example.org/Department5-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University196","graph":""}, + {"subject":"http://www.example.org/Department5-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University312","graph":""}, + {"subject":"http://www.example.org/Department5-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department5-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department6-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University722","graph":""}, + {"subject":"http://www.example.org/Department6-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University449","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University314","graph":""}, + {"subject":"http://www.example.org/Department6-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department6-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department6-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University595","graph":""}, + {"subject":"http://www.example.org/Department6-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department6-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department6-University3-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department6-University4-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department6-University5-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department6-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University226","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department6-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department6-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University119","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University854","graph":""}, + {"subject":"http://www.example.org/Department6-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University982","graph":""}, + {"subject":"http://www.example.org/Department7-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University296","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department7-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University368","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University178","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University535","graph":""}, + {"subject":"http://www.example.org/Department7-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University67","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department7-University4-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University403","graph":""}, + {"subject":"http://www.example.org/Department7-University5-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department7-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University154","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department7-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University531","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department7-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department7-University8-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department7-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department7-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University546","graph":""}, + {"subject":"http://www.example.org/Department8-University0-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department8-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University920","graph":""}, + {"subject":"http://www.example.org/Department8-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department8-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department8-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department8-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University43","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department8-University2-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department8-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University854","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department8-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department8-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department8-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University427","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University229","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department8-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University831","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University998","graph":""}, + {"subject":"http://www.example.org/Department8-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University580","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department8-University9-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University339","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department9-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department9-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department9-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University954","graph":""}, + {"subject":"http://www.example.org/Department9-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department9-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University227","graph":""}, + {"subject":"http://www.example.org/Department9-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department9-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department9-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department9-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department9-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department9-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University225","graph":""}, + {"subject":"http://www.example.org/Department9-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department9-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University276","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department9-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department9-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University196","graph":""}, + {"subject":"http://www.example.org/Department9-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University737","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University671","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University737","graph":""}, + {"subject":"http://www.example.org/Department0-University0-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department0-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department0-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University779","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department0-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University493","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department0-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University269","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University625","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department0-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University925","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department0-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University911","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department0-University7-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department0-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University788","graph":""}, + {"subject":"http://www.example.org/Department0-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University149","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department0-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department0-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department10-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department10-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department10-University2-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department10-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department10-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department10-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department10-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department10-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department10-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University374","graph":""}, + {"subject":"http://www.example.org/Department10-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University837","graph":""}, + {"subject":"http://www.example.org/Department10-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University529","graph":""}, + {"subject":"http://www.example.org/Department10-University5-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department10-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department10-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University693","graph":""}, + {"subject":"http://www.example.org/Department10-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department10-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department10-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department10-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department10-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University141","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department10-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department10-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University873","graph":""}, + {"subject":"http://www.example.org/Department11-University0-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department11-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department11-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department11-University2-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department11-University3-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department11-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department11-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University877","graph":""}, + {"subject":"http://www.example.org/Department11-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department11-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department11-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University317","graph":""}, + {"subject":"http://www.example.org/Department11-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University442","graph":""}, + {"subject":"http://www.example.org/Department11-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department11-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department11-University8-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University240","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department11-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department12-University0-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department12-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University690","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department12-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department12-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department12-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University497","graph":""}, + {"subject":"http://www.example.org/Department12-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department12-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department12-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department12-University7-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department12-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department12-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department13-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University583","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department13-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department13-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department13-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department13-University2-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department13-University3-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University42","graph":""}, + {"subject":"http://www.example.org/Department13-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department13-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department13-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University671","graph":""}, + {"subject":"http://www.example.org/Department13-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department13-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department13-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University52","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department13-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University829","graph":""}, + {"subject":"http://www.example.org/Department13-University7-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department13-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University335","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department13-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University558","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department14-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University718","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University481","graph":""}, + {"subject":"http://www.example.org/Department14-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University971","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University26","graph":""}, + {"subject":"http://www.example.org/Department14-University3-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University335","graph":""}, + {"subject":"http://www.example.org/Department14-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department14-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University232","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department14-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department14-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University591","graph":""}, + {"subject":"http://www.example.org/Department14-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University381","graph":""}, + {"subject":"http://www.example.org/Department14-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department14-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University149","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department14-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department14-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University170","graph":""}, + {"subject":"http://www.example.org/Department15-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University981","graph":""}, + {"subject":"http://www.example.org/Department15-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University994","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department15-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University103","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University658","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department15-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department15-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department15-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University854","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department15-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University522","graph":""}, + {"subject":"http://www.example.org/Department15-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University660","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University211","graph":""}, + {"subject":"http://www.example.org/Department15-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University176","graph":""}, + {"subject":"http://www.example.org/Department16-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University455","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University852","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University207","graph":""}, + {"subject":"http://www.example.org/Department16-University3-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University198","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University866","graph":""}, + {"subject":"http://www.example.org/Department16-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University799","graph":""}, + {"subject":"http://www.example.org/Department16-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University875","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department16-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University454","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University981","graph":""}, + {"subject":"http://www.example.org/Department16-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department16-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University446","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department16-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University356","graph":""}, + {"subject":"http://www.example.org/Department16-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University682","graph":""}, + {"subject":"http://www.example.org/Department17-University1-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University47","graph":""}, + {"subject":"http://www.example.org/Department17-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University147","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department17-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University245","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department17-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department17-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University882","graph":""}, + {"subject":"http://www.example.org/Department17-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University841","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University55","graph":""}, + {"subject":"http://www.example.org/Department18-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University727","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department18-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University265","graph":""}, + {"subject":"http://www.example.org/Department18-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University173","graph":""}, + {"subject":"http://www.example.org/Department18-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department18-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University837","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department19-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University198","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University829","graph":""}, + {"subject":"http://www.example.org/Department19-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University501","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department19-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University455","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department19-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University986","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department1-University1-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department1-University2-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department1-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department1-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department1-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University874","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University596","graph":""}, + {"subject":"http://www.example.org/Department1-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University812","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University516","graph":""}, + {"subject":"http://www.example.org/Department1-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department1-University7-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University221","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University106","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department1-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University865","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department1-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department20-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University928","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department20-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department20-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department20-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University905","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department21-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University735","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department21-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department21-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department22-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department23-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department2-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University846","graph":""}, + {"subject":"http://www.example.org/Department2-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University604","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department2-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department2-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University964","graph":""}, + {"subject":"http://www.example.org/Department2-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department2-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department2-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department2-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department2-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department2-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department2-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department2-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department2-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University635","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department2-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University535","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University222","graph":""}, + {"subject":"http://www.example.org/Department3-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department3-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department3-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department3-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University454","graph":""}, + {"subject":"http://www.example.org/Department3-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department3-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University920","graph":""}, + {"subject":"http://www.example.org/Department3-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department3-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department3-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University337","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department3-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University981","graph":""}, + {"subject":"http://www.example.org/Department3-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University229","graph":""}, + {"subject":"http://www.example.org/Department3-University6-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University509","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University847","graph":""}, + {"subject":"http://www.example.org/Department3-University7-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University781","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University43","graph":""}, + {"subject":"http://www.example.org/Department3-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department3-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University383","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department4-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department4-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University449","graph":""}, + {"subject":"http://www.example.org/Department4-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University701","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department4-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University874","graph":""}, + {"subject":"http://www.example.org/Department4-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department4-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department4-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department4-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University73","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department4-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University596","graph":""}, + {"subject":"http://www.example.org/Department4-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department4-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University369","graph":""}, + {"subject":"http://www.example.org/Department4-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department4-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department4-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department4-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department5-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University724","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department5-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University20","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University382","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department5-University2-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University381","graph":""}, + {"subject":"http://www.example.org/Department5-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University914","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department5-University4-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University190","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department5-University5-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University840","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department5-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department5-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department5-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University157","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University493","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department5-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department6-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department6-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University876","graph":""}, + {"subject":"http://www.example.org/Department6-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department6-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department6-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department6-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University629","graph":""}, + {"subject":"http://www.example.org/Department6-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department6-University3-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department6-University4-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department6-University5-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department6-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department6-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University546","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University489","graph":""}, + {"subject":"http://www.example.org/Department6-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department6-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University663","graph":""}, + {"subject":"http://www.example.org/Department7-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University169","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department7-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University458","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University849","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University621","graph":""}, + {"subject":"http://www.example.org/Department7-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University427","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department7-University4-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department7-University5-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University806","graph":""}, + {"subject":"http://www.example.org/Department7-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department7-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University278","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department7-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department7-University8-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University31","graph":""}, + {"subject":"http://www.example.org/Department7-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department7-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department8-University0-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department8-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department8-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department8-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department8-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department8-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department8-University2-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department8-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University702","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department8-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department8-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department8-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University98","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University585","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department8-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University100","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University848","graph":""}, + {"subject":"http://www.example.org/Department8-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University70","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University861","graph":""}, + {"subject":"http://www.example.org/Department8-University9-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department9-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department9-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department9-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department9-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department9-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University106","graph":""}, + {"subject":"http://www.example.org/Department9-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department9-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University294","graph":""}, + {"subject":"http://www.example.org/Department9-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department9-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University196","graph":""}, + {"subject":"http://www.example.org/Department9-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department9-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University551","graph":""}, + {"subject":"http://www.example.org/Department9-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University294","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department9-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department9-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University278","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University41","graph":""}, + {"subject":"http://www.example.org/Department9-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department9-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University715","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University16","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University173","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University429","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University846","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University14","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department0-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University98","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University8","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University909","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University950","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University137","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University992","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University91","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University436","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University97","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University529","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University456","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University193","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University273","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department0-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University326","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department0-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University958","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University721","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University565","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University806","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University620","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University731","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University124","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University764","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University295","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University445","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department0-University5-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University722","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University205","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department0-University6-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department0-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University15","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University58","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University924","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University497","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University646","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University866","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University551","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department0-University8-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University649","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University880","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University625","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University368","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department0-University8-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent148","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University992","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University31","graph":""}, + {"subject":"http://www.example.org/Department0-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University956","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University743","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University953","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University74","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University881","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University333","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University592","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University3","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University867","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department10-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University95","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University223","graph":""}, + {"subject":"http://www.example.org/Department10-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University975","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University407","graph":""}, + {"subject":"http://www.example.org/Department10-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University215","graph":""}, + {"subject":"http://www.example.org/Department10-University3-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University825","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University943","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department10-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University191","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent141","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University118","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University39","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department10-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University427","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department10-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University408","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department10-University5-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department10-University6-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University170","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department10-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University796","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University659","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University595","graph":""}, + {"subject":"http://www.example.org/Department10-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University452","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University939","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University27","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University158","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University415","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University524","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University174","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department10-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University585","graph":""}, + {"subject":"http://www.example.org/Department10-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University620","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University521","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University20","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University589","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department10-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University253","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University250","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University740","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University732","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University458","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University741","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department11-University0-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent147","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department11-University0-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University242","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University882","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department11-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University406","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University543","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University396","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department11-University2-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University210","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University731","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University939","graph":""}, + {"subject":"http://www.example.org/Department11-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University606","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University333","graph":""}, + {"subject":"http://www.example.org/Department11-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University124","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department11-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University968","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University652","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University0","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University550","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University175","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University857","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University440","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University65","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University843","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University209","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University323","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University331","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University764","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University646","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department11-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department11-University8-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University816","graph":""}, + {"subject":"http://www.example.org/Department11-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University337","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University17","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University19","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University932","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University925","graph":""}, + {"subject":"http://www.example.org/Department11-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent150","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University126","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University397","graph":""}, + {"subject":"http://www.example.org/Department11-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University435","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University295","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University295","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University704","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University137","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department12-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University558","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University322","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University457","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department12-University1-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department12-University1-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University84","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent151","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent145","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University916","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent152","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department12-University2-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University594","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University317","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University259","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University448","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University790","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University646","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University655","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University26","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University91","graph":""}, + {"subject":"http://www.example.org/Department12-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University355","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University489","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University32","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent143","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University594","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent139","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University844","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University65","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University43","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University761","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University998","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University900","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University481","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University10","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department12-University7-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department12-University7-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University604","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University524","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University331","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University736","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University520","graph":""}, + {"subject":"http://www.example.org/Department12-University8-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University157","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University579","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University2","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University701","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University897","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University98","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent141","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University796","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University240","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University159","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University403","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department13-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University632","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University153","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University767","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University867","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University964","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department13-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University448","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University7","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University442","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University816","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University211","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department13-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University650","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University505","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department13-University5-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department13-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University151","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University172","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University927","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University269","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University59","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University5","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University982","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent157","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent155","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent145","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University237","graph":""}, + {"subject":"http://www.example.org/Department13-University7-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent139","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University84","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University905","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department13-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University847","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University910","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University773","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department13-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University531","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University631","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University495","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University142","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University376","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University130","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department13-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University990","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University729","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University715","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University857","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University708","graph":""}, + {"subject":"http://www.example.org/Department14-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University706","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University318","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University349","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department14-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department14-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University104","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department14-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University799","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University789","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University477","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University551","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University314","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University950","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University869","graph":""}, + {"subject":"http://www.example.org/Department14-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University27","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University2","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University364","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University413","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University149","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University660","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University7","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University846","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University513","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University48","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University522","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University897","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University552","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University160","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University316","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University873","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University71","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University762","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University565","graph":""}, + {"subject":"http://www.example.org/Department14-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University13","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department14-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University104","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University650","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University633","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University310","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department15-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University513","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department15-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University135","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University122","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University737","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University240","graph":""}, + {"subject":"http://www.example.org/Department15-University2-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University351","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University546","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department15-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University772","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University789","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University771","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department15-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department15-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University8","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University822","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department15-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University261","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University897","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University288","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department15-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University356","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University593","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University321","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University285","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University787","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University511","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University253","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University265","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University250","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University655","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent153","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University351","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department16-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent154","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department16-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University775","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University137","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University188","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University424","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department16-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department16-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University359","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University49","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department16-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University369","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University728","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University16","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University257","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University415","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University964","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University896","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University828","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University954","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University795","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University771","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department16-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University725","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department16-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University407","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University381","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University775","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University319","graph":""}, + {"subject":"http://www.example.org/Department16-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University396","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University215","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University497","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University944","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University122","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University50","graph":""}, + {"subject":"http://www.example.org/Department17-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University919","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University717","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University598","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University650","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department17-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent149","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University126","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University265","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent153","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University680","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent146","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University940","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University462","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University184","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University437","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University355","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University838","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department17-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University73","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University892","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department17-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent135","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University335","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University743","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University279","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University18","graph":""}, + {"subject":"http://www.example.org/Department17-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University140","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University732","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University914","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University605","graph":""}, + {"subject":"http://www.example.org/Department17-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University207","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department17-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University954","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University821","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University869","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University53","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department18-University3-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University130","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University397","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University586","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University944","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University296","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University832","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University344","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University934","graph":""}, + {"subject":"http://www.example.org/Department18-University6-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University919","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University706","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University319","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University607","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department18-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University39","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department18-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University877","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University87","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University294","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University378","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University456","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University444","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department19-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University349","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University959","graph":""}, + {"subject":"http://www.example.org/Department19-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University279","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University47","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University621","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University239","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University310","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University288","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University375","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University509","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University604","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University424","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University499","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University477","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University875","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University512","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University220","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University722","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University227","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department1-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent143","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University505","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University844","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University166","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University508","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University856","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University344","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University822","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University761","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University237","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent135","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University323","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department1-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University190","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University15","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University708","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department1-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department1-University4-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University787","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University339","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University101","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department1-University5-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University589","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University757","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University100","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University657","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department1-University6-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University592","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University850","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent142","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University449","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent134","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University875","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University581","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University128","graph":""}, + {"subject":"http://www.example.org/Department1-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University817","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University821","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University881","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University657","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University142","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department1-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University86","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University717","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department1-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University873","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University796","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University269","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University519","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University643","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University337","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University17","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University899","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University101","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University29","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University989","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University35","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University831","graph":""}, + {"subject":"http://www.example.org/Department20-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University17","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University677","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University359","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University913","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University0","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department20-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University677","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University211","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University16","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department20-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University598","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department20-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University101","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University70","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University359","graph":""}, + {"subject":"http://www.example.org/Department20-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University100","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University961","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University500","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University880","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University255","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University14","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University755","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University54","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University690","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department21-University6-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University732","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department21-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University124","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University975","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University235","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University531","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department21-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department21-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University831","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University795","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department22-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University87","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department22-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University45","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University257","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University7","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University637","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department23-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department2-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University408","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University816","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department2-University0-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University983","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University233","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University877","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department2-University1-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University162","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University909","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University928","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University550","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University593","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department2-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University326","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University762","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University172","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University245","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department2-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University775","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University682","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department2-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University956","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University11","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department2-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University175","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University140","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University13","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University649","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University808","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University26","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department2-University5-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University740","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University15","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University314","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University339","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent139","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University132","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department2-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University284","graph":""}, + {"subject":"http://www.example.org/Department2-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University785","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University56","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University944","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University146","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department2-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University779","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University431","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University769","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University50","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University987","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent143","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University378","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department2-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University251","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University592","graph":""}, + {"subject":"http://www.example.org/Department2-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University657","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University32","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University950","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University154","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University741","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department3-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University158","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University118","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department3-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University558","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University523","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department3-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University440","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department3-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University565","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University678","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University69","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University41","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University169","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University994","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University708","graph":""}, + {"subject":"http://www.example.org/Department3-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University953","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University41","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department3-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University56","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University318","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department3-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University174","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University138","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University879","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University333","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University442","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University396","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University880","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University702","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department3-University6-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University135","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University468","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University489","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University658","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University525","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University462","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University376","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University635","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University273","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University848","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University374","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University922","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University715","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University545","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University157","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University204","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department3-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University369","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University191","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department4-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University481","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University11","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University502","graph":""}, + {"subject":"http://www.example.org/Department4-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University159","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University509","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University832","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University971","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University155","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent134","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University21","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University229","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University319","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University506","graph":""}, + {"subject":"http://www.example.org/Department4-University3-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University412","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department4-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University104","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University755","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University680","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University533","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University563","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department4-University4-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University289","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University787","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department4-University5-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University215","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University605","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University136","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University19","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University448","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University781","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University659","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University323","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University889","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department4-University7-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department4-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University519","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University159","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University218","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department4-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University456","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University867","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University896","graph":""}, + {"subject":"http://www.example.org/Department5-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department5-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University132","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University849","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University355","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University595","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department5-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University59","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department5-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University788","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University911","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University533","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University69","graph":""}, + {"subject":"http://www.example.org/Department5-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University799","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University767","graph":""}, + {"subject":"http://www.example.org/Department5-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University107","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department5-University3-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University693","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University127","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University64","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University961","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University153","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University85","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University909","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University637","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University552","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University166","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University958","graph":""}, + {"subject":"http://www.example.org/Department5-University5-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University398","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University508","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University759","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University767","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University326","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University283","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University728","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University261","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University14","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department5-University7-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University769","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University906","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University103","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University973","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University130","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University114","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent144","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University374","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department5-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University161","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University53","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University974","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University502","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University79","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department5-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University690","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University798","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University281","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University605","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department6-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University693","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University397","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University191","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University900","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University70","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University146","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University64","graph":""}, + {"subject":"http://www.example.org/Department6-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department6-University2-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University84","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University340","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University757","graph":""}, + {"subject":"http://www.example.org/Department6-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department6-University2-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University520","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University222","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department6-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University179","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University316","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department6-University4-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University755","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University5","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University67","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University174","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department6-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University505","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University393","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University785","graph":""}, + {"subject":"http://www.example.org/Department6-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University543","graph":""}, + {"subject":"http://www.example.org/Department6-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department6-University6-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University669","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University519","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University727","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University207","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University621","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department6-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University210","graph":""}, + {"subject":"http://www.example.org/Department6-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University952","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University825","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University718","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University725","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University184","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University452","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University618","graph":""}, + {"subject":"http://www.example.org/Department7-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University220","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University345","graph":""}, + {"subject":"http://www.example.org/Department7-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University841","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University728","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University495","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University142","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University618","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent142","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University499","graph":""}, + {"subject":"http://www.example.org/Department7-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department7-University1-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University376","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent135","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University581","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University349","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University253","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University828","graph":""}, + {"subject":"http://www.example.org/Department7-University2-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University573","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University967","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University943","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department7-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University176","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University812","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University71","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University625","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University225","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department7-University4-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University958","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University132","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department7-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University85","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University65","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University444","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department7-University5-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University10","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University312","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University511","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University10","graph":""}, + {"subject":"http://www.example.org/Department7-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department7-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University403","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University387","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University457","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University736","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department7-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University55","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent145","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University961","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University166","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department7-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University550","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University667","graph":""}, + {"subject":"http://www.example.org/Department7-University8-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University182","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University939","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University724","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University856","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University548","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University435","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department8-University0-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University682","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University506","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent134","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University636","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent142","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University521","graph":""}, + {"subject":"http://www.example.org/Department8-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University889","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University998","graph":""}, + {"subject":"http://www.example.org/Department8-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University256","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University817","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department8-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department8-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University589","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University445","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University573","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University393","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University613","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University773","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent141","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University210","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University383","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University940","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University218","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University580","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University236","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University136","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University987","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University79","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University79","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University764","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University910","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University375","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University659","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University735","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University56","graph":""}, + {"subject":"http://www.example.org/Department8-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department8-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University276","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University311","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department8-University7-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department8-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University103","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University429","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University525","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University179","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University35","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department8-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University64","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department8-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University552","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University205","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University989","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University645","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University221","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University821","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department8-University9-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University209","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University3","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University866","graph":""}, + {"subject":"http://www.example.org/Department9-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University86","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University161","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University236","graph":""}, + {"subject":"http://www.example.org/Department9-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University586","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University147","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department9-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department9-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University256","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University596","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University861","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University856","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department9-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University21","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department9-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department9-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department9-University3-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University632","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University188","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department9-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University974","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University45","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University162","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University29","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University408","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University261","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University135","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University725","graph":""}, + {"subject":"http://www.example.org/Department9-University5-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University865","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University227","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University989","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University48","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University718","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University637","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University52","graph":""}, + {"subject":"http://www.example.org/Department9-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University97","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University331","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University620","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University840","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University222","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University922","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University975","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University857","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department9-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University521","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department9-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University736","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University806","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University959","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University523","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University822","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department9-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://www.example.org/Department0-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University462","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University223","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department0-University0-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department0-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department0-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department0-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department0-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University190","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department0-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University968","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department0-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University279","graph":""}, + {"subject":"http://www.example.org/Department0-University7-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University516","graph":""}, + {"subject":"http://www.example.org/Department0-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University498","graph":""}, + {"subject":"http://www.example.org/Department0-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University182","graph":""}, + {"subject":"http://www.example.org/Department0-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department0-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department10-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University828","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department10-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department10-University2-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department10-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department10-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department10-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department10-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department10-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department10-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department10-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department10-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department10-University5-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University843","graph":""}, + {"subject":"http://www.example.org/Department10-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department10-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department10-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University446","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University170","graph":""}, + {"subject":"http://www.example.org/Department10-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department10-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department10-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department10-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University118","graph":""}, + {"subject":"http://www.example.org/Department10-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department10-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University153","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University161","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department11-University0-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University927","graph":""}, + {"subject":"http://www.example.org/Department11-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department11-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University987","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department11-University2-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University289","graph":""}, + {"subject":"http://www.example.org/Department11-University3-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University825","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University627","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University42","graph":""}, + {"subject":"http://www.example.org/Department11-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department11-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department11-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department11-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department11-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department11-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department11-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University667","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department11-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department11-University8-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University591","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department11-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University478","graph":""}, + {"subject":"http://www.example.org/Department12-University0-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University175","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department12-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University952","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University172","graph":""}, + {"subject":"http://www.example.org/Department12-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University344","graph":""}, + {"subject":"http://www.example.org/Department12-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University140","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department12-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University573","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University983","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University109","graph":""}, + {"subject":"http://www.example.org/Department12-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University138","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University151","graph":""}, + {"subject":"http://www.example.org/Department12-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University607","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University610","graph":""}, + {"subject":"http://www.example.org/Department12-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University514","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University925","graph":""}, + {"subject":"http://www.example.org/Department12-University7-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department12-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University375","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University321","graph":""}, + {"subject":"http://www.example.org/Department12-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department13-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University178","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University919","graph":""}, + {"subject":"http://www.example.org/Department13-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department13-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department13-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University921","graph":""}, + {"subject":"http://www.example.org/Department13-University2-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University515","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University619","graph":""}, + {"subject":"http://www.example.org/Department13-University3-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department13-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University119","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department13-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department13-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department13-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University155","graph":""}, + {"subject":"http://www.example.org/Department13-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University292","graph":""}, + {"subject":"http://www.example.org/Department13-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department13-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University311","graph":""}, + {"subject":"http://www.example.org/Department13-University7-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University220","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University429","graph":""}, + {"subject":"http://www.example.org/Department13-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department13-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University953","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department14-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University412","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University940","graph":""}, + {"subject":"http://www.example.org/Department14-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University869","graph":""}, + {"subject":"http://www.example.org/Department14-University3-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department14-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department14-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University73","graph":""}, + {"subject":"http://www.example.org/Department14-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University761","graph":""}, + {"subject":"http://www.example.org/Department14-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University18","graph":""}, + {"subject":"http://www.example.org/Department14-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department14-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University18","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University94","graph":""}, + {"subject":"http://www.example.org/Department14-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department14-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University233","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department14-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department15-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department15-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department15-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department15-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University928","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University498","graph":""}, + {"subject":"http://www.example.org/Department15-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University524","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department15-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University236","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department15-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department15-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University95","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University500","graph":""}, + {"subject":"http://www.example.org/Department15-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University356","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department16-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University47","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University762","graph":""}, + {"subject":"http://www.example.org/Department16-University3-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University317","graph":""}, + {"subject":"http://www.example.org/Department16-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University990","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department16-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University232","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department16-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University769","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department16-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University458","graph":""}, + {"subject":"http://www.example.org/Department16-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University48","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department16-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University29","graph":""}, + {"subject":"http://www.example.org/Department16-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University523","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department17-University1-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department17-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department17-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department17-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department17-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University184","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department17-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University122","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department18-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department18-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department18-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University930","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department18-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University585","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department18-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University13","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department19-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department19-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University843","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department19-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University109","graph":""}, + {"subject":"http://www.example.org/Department19-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University413","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department1-University1-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University973","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University583","graph":""}, + {"subject":"http://www.example.org/Department1-University2-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University959","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department1-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University514","graph":""}, + {"subject":"http://www.example.org/Department1-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University437","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department1-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department1-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department1-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department1-University7-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University795","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department1-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University91","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department1-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department20-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department20-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department20-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department20-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University433","graph":""}, + {"subject":"http://www.example.org/Department21-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department21-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department21-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department22-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department23-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University150","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department2-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department2-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University735","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University54","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department2-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department2-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department2-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department2-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University731","graph":""}, + {"subject":"http://www.example.org/Department2-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University829","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University255","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department2-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University221","graph":""}, + {"subject":"http://www.example.org/Department2-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University663","graph":""}, + {"subject":"http://www.example.org/Department2-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University316","graph":""}, + {"subject":"http://www.example.org/Department2-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University393","graph":""}, + {"subject":"http://www.example.org/Department2-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department2-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University182","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department2-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University232","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department3-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department3-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department3-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department3-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University717","graph":""}, + {"subject":"http://www.example.org/Department3-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department3-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department3-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University54","graph":""}, + {"subject":"http://www.example.org/Department3-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University19","graph":""}, + {"subject":"http://www.example.org/Department3-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department3-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University757","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University837","graph":""}, + {"subject":"http://www.example.org/Department3-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University548","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University415","graph":""}, + {"subject":"http://www.example.org/Department3-University6-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University49","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department3-University7-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department3-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University321","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University498","graph":""}, + {"subject":"http://www.example.org/Department3-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University952","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University127","graph":""}, + {"subject":"http://www.example.org/Department4-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department4-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department4-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department4-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University162","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University468","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University798","graph":""}, + {"subject":"http://www.example.org/Department4-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University49","graph":""}, + {"subject":"http://www.example.org/Department4-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department4-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University525","graph":""}, + {"subject":"http://www.example.org/Department4-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University74","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department4-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department4-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University781","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department4-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department4-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department4-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department4-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University146","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department4-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University916","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University932","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department5-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department5-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University808","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department5-University2-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University55","graph":""}, + {"subject":"http://www.example.org/Department5-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department5-University4-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University588","graph":""}, + {"subject":"http://www.example.org/Department5-University5-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University311","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University242","graph":""}, + {"subject":"http://www.example.org/Department5-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University196","graph":""}, + {"subject":"http://www.example.org/Department5-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University312","graph":""}, + {"subject":"http://www.example.org/Department5-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department5-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department6-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University722","graph":""}, + {"subject":"http://www.example.org/Department6-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University449","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University314","graph":""}, + {"subject":"http://www.example.org/Department6-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department6-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department6-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University595","graph":""}, + {"subject":"http://www.example.org/Department6-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department6-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department6-University3-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department6-University4-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department6-University5-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department6-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University226","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department6-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department6-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University119","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University854","graph":""}, + {"subject":"http://www.example.org/Department6-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University982","graph":""}, + {"subject":"http://www.example.org/Department7-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University296","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department7-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University368","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University178","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University535","graph":""}, + {"subject":"http://www.example.org/Department7-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University67","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department7-University4-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University403","graph":""}, + {"subject":"http://www.example.org/Department7-University5-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department7-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University154","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department7-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University531","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department7-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department7-University8-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department7-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department7-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University546","graph":""}, + {"subject":"http://www.example.org/Department8-University0-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department8-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University920","graph":""}, + {"subject":"http://www.example.org/Department8-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department8-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department8-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department8-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University43","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department8-University2-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department8-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University854","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department8-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department8-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department8-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University427","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University229","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department8-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University831","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University998","graph":""}, + {"subject":"http://www.example.org/Department8-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University580","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department8-University9-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University339","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department9-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department9-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department9-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University954","graph":""}, + {"subject":"http://www.example.org/Department9-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department9-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University227","graph":""}, + {"subject":"http://www.example.org/Department9-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department9-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department9-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department9-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department9-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department9-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University225","graph":""}, + {"subject":"http://www.example.org/Department9-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department9-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University276","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department9-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department9-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University196","graph":""}, + {"subject":"http://www.example.org/Department9-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University737","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University671","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University737","graph":""}, + {"subject":"http://www.example.org/Department0-University0-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department0-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department0-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University779","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department0-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University493","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department0-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University269","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University625","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department0-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University925","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department0-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University911","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department0-University7-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department0-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University788","graph":""}, + {"subject":"http://www.example.org/Department0-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University149","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department0-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department0-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department10-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department10-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department10-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department10-University2-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department10-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department10-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department10-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department10-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department10-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department10-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University374","graph":""}, + {"subject":"http://www.example.org/Department10-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University837","graph":""}, + {"subject":"http://www.example.org/Department10-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University529","graph":""}, + {"subject":"http://www.example.org/Department10-University5-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department10-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department10-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University693","graph":""}, + {"subject":"http://www.example.org/Department10-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department10-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department10-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department10-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department10-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University141","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department10-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department10-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University873","graph":""}, + {"subject":"http://www.example.org/Department11-University0-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department11-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department11-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department11-University2-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department11-University2-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department11-University3-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department11-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department11-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University877","graph":""}, + {"subject":"http://www.example.org/Department11-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department11-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department11-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University317","graph":""}, + {"subject":"http://www.example.org/Department11-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University442","graph":""}, + {"subject":"http://www.example.org/Department11-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department11-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department11-University8-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University240","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department11-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department12-University0-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department12-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University690","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department12-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department12-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department12-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University497","graph":""}, + {"subject":"http://www.example.org/Department12-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department12-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department12-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department12-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department12-University7-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department12-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department12-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department13-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University583","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department13-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department13-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department13-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department13-University2-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department13-University3-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University42","graph":""}, + {"subject":"http://www.example.org/Department13-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department13-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department13-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University671","graph":""}, + {"subject":"http://www.example.org/Department13-University5-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department13-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department13-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University52","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department13-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University829","graph":""}, + {"subject":"http://www.example.org/Department13-University7-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department13-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University335","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department13-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University558","graph":""}, + {"subject":"http://www.example.org/Department14-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department14-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University718","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University481","graph":""}, + {"subject":"http://www.example.org/Department14-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University971","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University26","graph":""}, + {"subject":"http://www.example.org/Department14-University3-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University335","graph":""}, + {"subject":"http://www.example.org/Department14-University4-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department14-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University232","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department14-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department14-University5-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University591","graph":""}, + {"subject":"http://www.example.org/Department14-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University381","graph":""}, + {"subject":"http://www.example.org/Department14-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department14-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University149","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department14-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department14-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University170","graph":""}, + {"subject":"http://www.example.org/Department15-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University981","graph":""}, + {"subject":"http://www.example.org/Department15-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University994","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department15-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University103","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University658","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department15-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department15-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department15-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University854","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department15-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University522","graph":""}, + {"subject":"http://www.example.org/Department15-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University660","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University211","graph":""}, + {"subject":"http://www.example.org/Department15-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University176","graph":""}, + {"subject":"http://www.example.org/Department16-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University455","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University852","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University207","graph":""}, + {"subject":"http://www.example.org/Department16-University3-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University198","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University866","graph":""}, + {"subject":"http://www.example.org/Department16-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University799","graph":""}, + {"subject":"http://www.example.org/Department16-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University875","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department16-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University454","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University981","graph":""}, + {"subject":"http://www.example.org/Department16-University8-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department16-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University446","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department16-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University356","graph":""}, + {"subject":"http://www.example.org/Department16-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University682","graph":""}, + {"subject":"http://www.example.org/Department17-University1-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University47","graph":""}, + {"subject":"http://www.example.org/Department17-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University147","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department17-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University245","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department17-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department17-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department17-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University882","graph":""}, + {"subject":"http://www.example.org/Department17-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University841","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department18-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University55","graph":""}, + {"subject":"http://www.example.org/Department18-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University727","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department18-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University265","graph":""}, + {"subject":"http://www.example.org/Department18-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University173","graph":""}, + {"subject":"http://www.example.org/Department18-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department18-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University837","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department19-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University198","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University829","graph":""}, + {"subject":"http://www.example.org/Department19-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University501","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department19-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University455","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department19-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University986","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department1-University1-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department1-University1-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department1-University2-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department1-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department1-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department1-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University874","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University596","graph":""}, + {"subject":"http://www.example.org/Department1-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University812","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University516","graph":""}, + {"subject":"http://www.example.org/Department1-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department1-University7-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University221","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University106","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department1-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University865","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department1-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University600","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department20-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University928","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department20-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department20-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department20-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University905","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department21-University4-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University735","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department21-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department21-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department22-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department23-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department2-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department2-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University846","graph":""}, + {"subject":"http://www.example.org/Department2-University1-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University604","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department2-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department2-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University964","graph":""}, + {"subject":"http://www.example.org/Department2-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department2-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department2-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department2-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department2-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department2-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department2-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department2-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department2-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University635","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department2-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University535","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University222","graph":""}, + {"subject":"http://www.example.org/Department3-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department3-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department3-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department3-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University454","graph":""}, + {"subject":"http://www.example.org/Department3-University2-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department3-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University920","graph":""}, + {"subject":"http://www.example.org/Department3-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department3-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department3-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University337","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department3-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department3-University5-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University981","graph":""}, + {"subject":"http://www.example.org/Department3-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University229","graph":""}, + {"subject":"http://www.example.org/Department3-University6-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University509","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University847","graph":""}, + {"subject":"http://www.example.org/Department3-University7-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University781","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department3-University8-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University43","graph":""}, + {"subject":"http://www.example.org/Department3-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department3-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University383","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department4-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department4-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University449","graph":""}, + {"subject":"http://www.example.org/Department4-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University701","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department4-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University874","graph":""}, + {"subject":"http://www.example.org/Department4-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department4-University4-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department4-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department4-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University73","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department4-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University596","graph":""}, + {"subject":"http://www.example.org/Department4-University6-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department4-University7-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University369","graph":""}, + {"subject":"http://www.example.org/Department4-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department4-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department4-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department4-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department5-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University724","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department5-University1-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University20","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University382","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department5-University2-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University381","graph":""}, + {"subject":"http://www.example.org/Department5-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University914","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department5-University4-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department5-University4-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University190","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department5-University5-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University840","graph":""}, + {"subject":"http://www.example.org/Department5-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department5-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department5-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department5-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University157","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University493","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department5-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department6-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department6-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University876","graph":""}, + {"subject":"http://www.example.org/Department6-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department6-University1-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department6-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department6-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University629","graph":""}, + {"subject":"http://www.example.org/Department6-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department6-University3-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department6-University4-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department6-University5-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department6-University5-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department6-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department6-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University546","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University489","graph":""}, + {"subject":"http://www.example.org/Department6-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department6-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University663","graph":""}, + {"subject":"http://www.example.org/Department7-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University169","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department7-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University458","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University849","graph":""}, + {"subject":"http://www.example.org/Department7-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University621","graph":""}, + {"subject":"http://www.example.org/Department7-University3-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University427","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department7-University4-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department7-University5-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department7-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University806","graph":""}, + {"subject":"http://www.example.org/Department7-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department7-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department7-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University278","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department7-University8-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department7-University8-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University31","graph":""}, + {"subject":"http://www.example.org/Department7-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department7-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department8-University0-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department8-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department8-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department8-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department8-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department8-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department8-University2-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department8-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University702","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department8-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department8-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department8-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department8-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University98","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University585","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department8-University7-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University100","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department8-University8-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University848","graph":""}, + {"subject":"http://www.example.org/Department8-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University70","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University861","graph":""}, + {"subject":"http://www.example.org/Department8-University9-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department9-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department9-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department9-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department9-University2-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department9-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University106","graph":""}, + {"subject":"http://www.example.org/Department9-University2-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department9-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University294","graph":""}, + {"subject":"http://www.example.org/Department9-University3-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department9-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University196","graph":""}, + {"subject":"http://www.example.org/Department9-University4-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department9-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University551","graph":""}, + {"subject":"http://www.example.org/Department9-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University294","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department9-University5-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department9-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University278","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University41","graph":""}, + {"subject":"http://www.example.org/Department9-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department9-University8-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University715","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University16","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University173","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department0-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University429","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department0-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University846","graph":""}, + {"subject":"http://www.example.org/Department0-University0-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University14","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department0-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University98","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University8","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University909","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University950","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University137","graph":""}, + {"subject":"http://www.example.org/Department0-University1-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University992","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department0-University2-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University91","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University436","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University97","graph":""}, + {"subject":"http://www.example.org/Department0-University2-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University529","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University456","graph":""}, + {"subject":"http://www.example.org/Department0-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University193","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University273","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department0-University3-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University326","graph":""}, + {"subject":"http://www.example.org/Department0-University3-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department0-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University958","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University721","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University565","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University806","graph":""}, + {"subject":"http://www.example.org/Department0-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University620","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department0-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department0-University4-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University731","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University124","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University764","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University295","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University445","graph":""}, + {"subject":"http://www.example.org/Department0-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department0-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department0-University5-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University722","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University205","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department0-University6-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department0-University6-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department0-University6-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department0-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University15","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University58","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University924","graph":""}, + {"subject":"http://www.example.org/Department0-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University497","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University646","graph":""}, + {"subject":"http://www.example.org/Department0-University7-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University866","graph":""}, + {"subject":"http://www.example.org/Department0-University7-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University551","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department0-University8-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University649","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University880","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University625","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University368","graph":""}, + {"subject":"http://www.example.org/Department0-University8-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department0-University8-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department0-University9-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent148","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University992","graph":""}, + {"subject":"http://www.example.org/Department0-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University31","graph":""}, + {"subject":"http://www.example.org/Department0-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University956","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department10-University0-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University743","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University953","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University74","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University881","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department10-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University333","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University592","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University3","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department10-University1-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department10-University2-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University867","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department10-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University95","graph":""}, + {"subject":"http://www.example.org/Department10-University2-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University223","graph":""}, + {"subject":"http://www.example.org/Department10-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University975","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University407","graph":""}, + {"subject":"http://www.example.org/Department10-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department10-University3-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University215","graph":""}, + {"subject":"http://www.example.org/Department10-University3-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University825","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University943","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department10-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University191","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent141","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University118","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University39","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department10-University4-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department10-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University427","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department10-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University408","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department10-University5-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department10-University5-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department10-University6-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University170","graph":""}, + {"subject":"http://www.example.org/Department10-University6-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department10-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University796","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department10-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University659","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University595","graph":""}, + {"subject":"http://www.example.org/Department10-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University452","graph":""}, + {"subject":"http://www.example.org/Department10-University7-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University939","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University27","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University158","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University415","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University524","graph":""}, + {"subject":"http://www.example.org/Department10-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University174","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department10-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University807","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department10-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University585","graph":""}, + {"subject":"http://www.example.org/Department10-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University620","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University521","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University20","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University589","graph":""}, + {"subject":"http://www.example.org/Department10-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department10-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University253","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University250","graph":""}, + {"subject":"http://www.example.org/Department10-University9-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University115","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University740","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University732","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University458","graph":""}, + {"subject":"http://www.example.org/Department11-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University741","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department11-University0-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent147","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department11-University0-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department11-University0-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University242","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University851","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University882","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department11-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department11-University1-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University406","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University543","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University396","graph":""}, + {"subject":"http://www.example.org/Department11-University2-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department11-University2-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University210","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department11-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University731","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University939","graph":""}, + {"subject":"http://www.example.org/Department11-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department11-University3-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department11-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University606","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University333","graph":""}, + {"subject":"http://www.example.org/Department11-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department11-University4-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University124","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department11-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University968","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University652","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University0","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University550","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department11-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University175","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University623","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department11-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University857","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University440","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department11-University6-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University65","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University843","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University209","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University323","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University331","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University764","graph":""}, + {"subject":"http://www.example.org/Department11-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University567","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University646","graph":""}, + {"subject":"http://www.example.org/Department11-University7-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department11-University7-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University624","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department11-University8-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department11-University8-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department11-University8-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University816","graph":""}, + {"subject":"http://www.example.org/Department11-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University337","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University17","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University19","graph":""}, + {"subject":"http://www.example.org/Department11-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University932","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University925","graph":""}, + {"subject":"http://www.example.org/Department11-University9-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent150","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University126","graph":""}, + {"subject":"http://www.example.org/Department11-University9-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University397","graph":""}, + {"subject":"http://www.example.org/Department11-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University435","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University295","graph":""}, + {"subject":"http://www.example.org/Department12-University0-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University295","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University704","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University137","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department12-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department12-University0-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University558","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University322","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department12-University1-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University457","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department12-University1-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department12-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department12-University1-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University105","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University84","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent151","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent145","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department12-University2-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University916","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent152","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department12-University2-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department12-University2-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University915","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University594","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University317","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University259","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department12-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University471","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University133","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department12-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University448","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University790","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University646","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department12-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University655","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University941","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University26","graph":""}, + {"subject":"http://www.example.org/Department12-University4-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University91","graph":""}, + {"subject":"http://www.example.org/Department12-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University355","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University489","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University32","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University733","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department12-University5-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent143","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University594","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent139","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University844","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University65","graph":""}, + {"subject":"http://www.example.org/Department12-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University43","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University761","graph":""}, + {"subject":"http://www.example.org/Department12-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University998","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University900","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University481","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department12-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University10","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department12-University7-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department12-University7-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department12-University7-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University604","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University770","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University524","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University331","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University736","graph":""}, + {"subject":"http://www.example.org/Department12-University8-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University520","graph":""}, + {"subject":"http://www.example.org/Department12-University8-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University157","graph":""}, + {"subject":"http://www.example.org/Department12-University8-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University579","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department12-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University2","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University701","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University63","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department12-University9-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University897","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University98","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent141","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University796","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University240","graph":""}, + {"subject":"http://www.example.org/Department13-University0-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University159","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University403","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department13-University0-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department13-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University632","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University153","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University767","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department13-University1-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University867","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University993","graph":""}, + {"subject":"http://www.example.org/Department13-University1-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University964","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department13-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department13-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University448","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department13-University2-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University7","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University442","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department13-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University816","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University211","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University686","graph":""}, + {"subject":"http://www.example.org/Department13-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University650","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department13-University3-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department13-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University505","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department13-University4-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University814","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department13-University5-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department13-University5-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University151","graph":""}, + {"subject":"http://www.example.org/Department13-University5-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University172","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University927","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University664","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University269","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University59","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University5","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department13-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department13-University6-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University982","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent157","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent155","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University804","graph":""}, + {"subject":"http://www.example.org/Department13-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent145","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University237","graph":""}, + {"subject":"http://www.example.org/Department13-University7-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent139","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University84","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University905","graph":""}, + {"subject":"http://www.example.org/Department13-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department13-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University479","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University847","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University910","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University773","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department13-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department13-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University531","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department13-University8-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University631","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University495","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University142","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University376","graph":""}, + {"subject":"http://www.example.org/Department13-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University130","graph":""}, + {"subject":"http://www.example.org/Department13-University9-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department13-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University990","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University729","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University715","graph":""}, + {"subject":"http://www.example.org/Department14-University0-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department14-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University857","graph":""}, + {"subject":"http://www.example.org/Department14-University0-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University708","graph":""}, + {"subject":"http://www.example.org/Department14-University0-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University297","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University706","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University318","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University349","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department14-University1-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department14-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University104","graph":""}, + {"subject":"http://www.example.org/Department14-University1-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department14-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University799","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University789","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department14-University2-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University705","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University477","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department14-University2-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University551","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University314","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department14-University3-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department14-University3-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University950","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department14-University4-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department14-University4-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University869","graph":""}, + {"subject":"http://www.example.org/Department14-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University27","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University2","graph":""}, + {"subject":"http://www.example.org/Department14-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University364","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University413","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University149","graph":""}, + {"subject":"http://www.example.org/Department14-University5-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University660","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University942","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University7","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University846","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University513","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department14-University6-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University48","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University522","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University897","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University552","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department14-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department14-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University160","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University316","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University873","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department14-University8-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University71","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University762","graph":""}, + {"subject":"http://www.example.org/Department14-University8-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University565","graph":""}, + {"subject":"http://www.example.org/Department14-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University410","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department14-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University372","graph":""}, + {"subject":"http://www.example.org/Department14-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University13","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department14-University9-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department14-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University104","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University650","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University633","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department15-University1-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University310","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department15-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University513","graph":""}, + {"subject":"http://www.example.org/Department15-University1-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department15-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University135","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University122","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University737","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department15-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University240","graph":""}, + {"subject":"http://www.example.org/Department15-University2-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department15-University2-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University351","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University546","graph":""}, + {"subject":"http://www.example.org/Department15-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department15-University3-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department15-University3-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University772","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University789","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University771","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department15-University4-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department15-University4-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University260","graph":""}, + {"subject":"http://www.example.org/Department15-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department15-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University8","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University946","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University822","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University999","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department15-University6-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department15-University6-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department15-University6-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University261","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University459","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University68","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University313","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University897","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University288","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department15-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department15-University7-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department15-University7-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University356","graph":""}, + {"subject":"http://www.example.org/Department15-University8-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University593","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University321","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department15-University8-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University285","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University787","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University511","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department15-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University253","graph":""}, + {"subject":"http://www.example.org/Department15-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University265","graph":""}, + {"subject":"http://www.example.org/Department15-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University250","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University655","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University809","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent153","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University955","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University351","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University801","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department16-University1-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department16-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent154","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department16-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department16-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University775","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University137","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University188","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University424","graph":""}, + {"subject":"http://www.example.org/Department16-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department16-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department16-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department16-University3-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University359","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department16-University4-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University49","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department16-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University369","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department16-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University366","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University728","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University16","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department16-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University257","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University415","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department16-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University206","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University964","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University896","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University6","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department16-University7-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University57","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University828","graph":""}, + {"subject":"http://www.example.org/Department16-University7-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University954","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department16-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University795","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University771","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department16-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University725","graph":""}, + {"subject":"http://www.example.org/Department16-University8-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department16-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University407","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University381","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University775","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department16-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University319","graph":""}, + {"subject":"http://www.example.org/Department16-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University396","graph":""}, + {"subject":"http://www.example.org/Department16-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University215","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University497","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University944","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department17-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University122","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University50","graph":""}, + {"subject":"http://www.example.org/Department17-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University919","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University717","graph":""}, + {"subject":"http://www.example.org/Department17-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University768","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University598","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University650","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department17-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University248","graph":""}, + {"subject":"http://www.example.org/Department17-University3-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department17-University3-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent149","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University126","graph":""}, + {"subject":"http://www.example.org/Department17-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University265","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent153","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University680","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University180","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University460","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent146","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department17-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University940","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department17-University4-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University462","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University184","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University199","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University437","graph":""}, + {"subject":"http://www.example.org/Department17-University6-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University355","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University838","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department17-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University73","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University892","graph":""}, + {"subject":"http://www.example.org/Department17-University6-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department17-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent135","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University335","graph":""}, + {"subject":"http://www.example.org/Department17-University8-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University743","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University219","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University279","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department17-University8-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University18","graph":""}, + {"subject":"http://www.example.org/Department17-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University140","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University732","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University914","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University605","graph":""}, + {"subject":"http://www.example.org/Department17-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University207","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department17-University9-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department17-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University954","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department18-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University821","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University869","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University53","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department18-University3-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department18-University3-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University130","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University208","graph":""}, + {"subject":"http://www.example.org/Department18-University3-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department18-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University560","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University397","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University25","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University586","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department18-University4-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University350","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University944","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University296","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University832","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University691","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University96","graph":""}, + {"subject":"http://www.example.org/Department18-University6-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University430","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University344","graph":""}, + {"subject":"http://www.example.org/Department18-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University934","graph":""}, + {"subject":"http://www.example.org/Department18-University6-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University919","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University706","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University319","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University661","graph":""}, + {"subject":"http://www.example.org/Department18-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University607","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department18-University9-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University39","graph":""}, + {"subject":"http://www.example.org/Department18-University9-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department18-University9-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University877","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University87","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University294","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University378","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University456","graph":""}, + {"subject":"http://www.example.org/Department19-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University444","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department19-University3-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department19-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University386","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University616","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University187","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University349","graph":""}, + {"subject":"http://www.example.org/Department19-University4-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University959","graph":""}, + {"subject":"http://www.example.org/Department19-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University279","graph":""}, + {"subject":"http://www.example.org/Department19-University4-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University47","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University621","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University239","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University131","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University310","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University288","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University815","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department19-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University530","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department19-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University375","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University802","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department19-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University509","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University604","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University424","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University499","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department19-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University477","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University696","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University547","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University984","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University875","graph":""}, + {"subject":"http://www.example.org/Department1-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University512","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department1-University0-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University797","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department1-University0-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University469","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University220","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University722","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University227","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University834","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University687","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department1-University1-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department1-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent143","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University505","graph":""}, + {"subject":"http://www.example.org/Department1-University2-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University472","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University844","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University166","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University508","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University856","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University344","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University822","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department1-University2-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University761","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University673","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University399","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University237","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University315","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent135","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University323","graph":""}, + {"subject":"http://www.example.org/Department1-University3-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University644","graph":""}, + {"subject":"http://www.example.org/Department1-University3-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department1-University3-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University190","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University15","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University860","graph":""}, + {"subject":"http://www.example.org/Department1-University4-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University708","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department1-University4-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department1-University4-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department1-University4-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University787","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University339","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University101","graph":""}, + {"subject":"http://www.example.org/Department1-University5-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department1-University5-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University972","graph":""}, + {"subject":"http://www.example.org/Department1-University5-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department1-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University589","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University466","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University757","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University100","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University164","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University657","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University80","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University951","graph":""}, + {"subject":"http://www.example.org/Department1-University6-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University189","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University960","graph":""}, + {"subject":"http://www.example.org/Department1-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University592","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University850","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent142","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University449","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent134","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University307","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department1-University7-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University875","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University581","graph":""}, + {"subject":"http://www.example.org/Department1-University7-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University128","graph":""}, + {"subject":"http://www.example.org/Department1-University7-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University817","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University821","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University881","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University878","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University657","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University142","graph":""}, + {"subject":"http://www.example.org/Department1-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University168","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University569","graph":""}, + {"subject":"http://www.example.org/Department1-University8-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University86","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University717","graph":""}, + {"subject":"http://www.example.org/Department1-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department1-University8-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University873","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University482","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University796","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University269","graph":""}, + {"subject":"http://www.example.org/Department1-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University519","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University643","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University337","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University17","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University564","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department1-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University899","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University101","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University29","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University989","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University35","graph":""}, + {"subject":"http://www.example.org/Department20-University3-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University831","graph":""}, + {"subject":"http://www.example.org/Department20-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department20-University3-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University17","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University677","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department20-University4-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University359","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University913","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University0","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department20-University4-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department20-University4-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University677","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University211","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University16","graph":""}, + {"subject":"http://www.example.org/Department20-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University692","graph":""}, + {"subject":"http://www.example.org/Department20-University6-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University598","graph":""}, + {"subject":"http://www.example.org/Department20-University6-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department20-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University101","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University70","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department20-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University359","graph":""}, + {"subject":"http://www.example.org/Department20-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University93","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University100","graph":""}, + {"subject":"http://www.example.org/Department20-University9-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University961","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University500","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University880","graph":""}, + {"subject":"http://www.example.org/Department21-University4-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University907","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University255","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department21-University4-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University14","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University755","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University54","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University690","graph":""}, + {"subject":"http://www.example.org/Department21-University6-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University309","graph":""}, + {"subject":"http://www.example.org/Department21-University6-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University324","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University732","graph":""}, + {"subject":"http://www.example.org/Department21-University6-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department21-University6-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University572","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University124","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University975","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University235","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University937","graph":""}, + {"subject":"http://www.example.org/Department21-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University531","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University763","graph":""}, + {"subject":"http://www.example.org/Department21-University9-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department21-University9-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department21-University9-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University752","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University831","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department22-University6-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University341","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University332","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University795","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department22-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University87","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University394","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University267","graph":""}, + {"subject":"http://www.example.org/Department22-University6-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University486","graph":""}, + {"subject":"http://www.example.org/Department22-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University45","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department23-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University257","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University7","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University637","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department23-University6-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department23-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University794","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University401","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department2-University0-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department2-University0-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University408","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University816","graph":""}, + {"subject":"http://www.example.org/Department2-University0-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department2-University0-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University983","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University233","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University212","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University360","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University877","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department2-University1-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department2-University1-Lecturer6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University870","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University162","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University584","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University909","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University928","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University550","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University593","graph":""}, + {"subject":"http://www.example.org/Department2-University2-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University813","graph":""}, + {"subject":"http://www.example.org/Department2-University2-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University676","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University326","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University762","graph":""}, + {"subject":"http://www.example.org/Department2-University2-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University654","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University172","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University245","graph":""}, + {"subject":"http://www.example.org/Department2-University3-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department2-University3-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University775","graph":""}, + {"subject":"http://www.example.org/Department2-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University682","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department2-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University988","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University956","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University11","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department2-University4-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University175","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department2-University4-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University707","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University474","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University140","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University13","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University649","graph":""}, + {"subject":"http://www.example.org/Department2-University5-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University808","graph":""}, + {"subject":"http://www.example.org/Department2-University5-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University26","graph":""}, + {"subject":"http://www.example.org/Department2-University5-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department2-University5-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University740","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University15","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University314","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University923","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University339","graph":""}, + {"subject":"http://www.example.org/Department2-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent139","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University132","graph":""}, + {"subject":"http://www.example.org/Department2-University6-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department2-University6-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University284","graph":""}, + {"subject":"http://www.example.org/Department2-University7-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University785","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University56","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University402","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University944","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University146","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University709","graph":""}, + {"subject":"http://www.example.org/Department2-University7-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University779","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University431","graph":""}, + {"subject":"http://www.example.org/Department2-University7-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University404","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University769","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University562","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University50","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University987","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent143","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department2-University8-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University378","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University485","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University490","graph":""}, + {"subject":"http://www.example.org/Department2-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University251","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department2-University8-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University592","graph":""}, + {"subject":"http://www.example.org/Department2-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University657","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department2-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University32","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University665","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University950","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University154","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department2-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University741","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department3-University0-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University639","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department3-University0-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University985","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University423","graph":""}, + {"subject":"http://www.example.org/Department3-University0-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University30","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University88","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University158","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University118","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University258","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department3-University1-AssociateProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department3-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University558","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University523","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University714","graph":""}, + {"subject":"http://www.example.org/Department3-University1-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department3-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University440","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department3-University2-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University833","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University44","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University231","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department3-University2-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University565","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University597","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University536","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University824","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University678","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University69","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department3-University3-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department3-University4-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University41","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University169","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University994","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University708","graph":""}, + {"subject":"http://www.example.org/Department3-University4-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University953","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University41","graph":""}, + {"subject":"http://www.example.org/Department3-University4-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department3-University4-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University116","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University56","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University282","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University318","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department3-University5-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University174","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University138","graph":""}, + {"subject":"http://www.example.org/Department3-University5-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University744","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University879","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University491","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University333","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University442","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University348","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University396","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University880","graph":""}, + {"subject":"http://www.example.org/Department3-University6-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University702","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department3-University6-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University135","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department3-University6-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University468","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University684","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University489","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University949","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department3-University7-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University658","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University525","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department3-University7-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University462","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University376","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University635","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University273","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University848","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University374","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University353","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University947","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University922","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University715","graph":""}, + {"subject":"http://www.example.org/Department3-University8-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University545","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University157","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University367","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University204","graph":""}, + {"subject":"http://www.example.org/Department3-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department3-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department3-University9-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University577","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University369","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department4-University0-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University855","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University191","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University299","graph":""}, + {"subject":"http://www.example.org/Department4-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University753","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department4-University0-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University481","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University476","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University587","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University300","graph":""}, + {"subject":"http://www.example.org/Department4-University1-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University11","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University502","graph":""}, + {"subject":"http://www.example.org/Department4-University1-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University159","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department4-University1-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University509","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University832","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department4-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University628","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University766","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University971","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University991","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department4-University2-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University155","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent134","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University113","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University21","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University229","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University890","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University319","graph":""}, + {"subject":"http://www.example.org/Department4-University3-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University506","graph":""}, + {"subject":"http://www.example.org/Department4-University3-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University412","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University962","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University963","graph":""}, + {"subject":"http://www.example.org/Department4-University3-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University380","graph":""}, + {"subject":"http://www.example.org/Department4-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University104","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University755","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University680","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University533","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University152","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University494","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University156","graph":""}, + {"subject":"http://www.example.org/Department4-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University563","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department4-University4-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department4-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University853","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University289","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University346","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University938","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University787","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University503","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University443","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University803","graph":""}, + {"subject":"http://www.example.org/Department4-University5-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University792","graph":""}, + {"subject":"http://www.example.org/Department4-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University409","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University72","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University215","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University1","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University163","graph":""}, + {"subject":"http://www.example.org/Department4-University6-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University605","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University136","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University19","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department4-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University448","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University781","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University659","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department4-University7-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University323","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University889","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University894","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department4-University7-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department4-University7-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University82","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University774","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University246","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University171","graph":""}, + {"subject":"http://www.example.org/Department4-University8-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University352","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University330","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department4-University8-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University519","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University685","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department4-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University159","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University218","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University200","graph":""}, + {"subject":"http://www.example.org/Department4-University9-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University819","graph":""}, + {"subject":"http://www.example.org/Department4-University9-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University871","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University456","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University917","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University277","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University683","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University867","graph":""}, + {"subject":"http://www.example.org/Department5-University0-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University712","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University896","graph":""}, + {"subject":"http://www.example.org/Department5-University0-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department5-University0-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department5-University0-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University734","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University132","graph":""}, + {"subject":"http://www.example.org/Department5-University1-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University849","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University355","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University595","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department5-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University978","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University338","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University59","graph":""}, + {"subject":"http://www.example.org/Department5-University1-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University362","graph":""}, + {"subject":"http://www.example.org/Department5-University1-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University40","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University893","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University788","graph":""}, + {"subject":"http://www.example.org/Department5-University2-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University911","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University533","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent45","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University69","graph":""}, + {"subject":"http://www.example.org/Department5-University2-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University799","graph":""}, + {"subject":"http://www.example.org/Department5-University2-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University343","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University266","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University710","graph":""}, + {"subject":"http://www.example.org/Department5-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University730","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University800","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University760","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University767","graph":""}, + {"subject":"http://www.example.org/Department5-University3-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University107","graph":""}, + {"subject":"http://www.example.org/Department5-University3-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University830","graph":""}, + {"subject":"http://www.example.org/Department5-University3-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University384","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University693","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University127","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University541","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University64","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University961","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University153","graph":""}, + {"subject":"http://www.example.org/Department5-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University765","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University85","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University909","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University637","graph":""}, + {"subject":"http://www.example.org/Department5-University5-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University552","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University308","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University166","graph":""}, + {"subject":"http://www.example.org/Department5-University5-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University958","graph":""}, + {"subject":"http://www.example.org/Department5-University5-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University398","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University508","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University759","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University767","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University326","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University134","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University283","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University728","graph":""}, + {"subject":"http://www.example.org/Department5-University6-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University575","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University601","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University818","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University139","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent67","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University608","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University261","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University475","graph":""}, + {"subject":"http://www.example.org/Department5-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University77","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent121","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University14","graph":""}, + {"subject":"http://www.example.org/Department5-University7-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department5-University7-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University769","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University537","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent131","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University249","graph":""}, + {"subject":"http://www.example.org/Department5-University8-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University906","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University103","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University973","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University130","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University114","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent122","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent144","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University374","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department5-University8-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University121","graph":""}, + {"subject":"http://www.example.org/Department5-University8-Lecturer5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University81","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University161","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University53","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University974","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University502","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department5-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University79","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department5-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University648","graph":""}, + {"subject":"http://www.example.org/Department5-University9-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department5-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University185","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University690","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University798","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University539","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University467","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University281","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University605","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent48","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department6-University0-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University693","graph":""}, + {"subject":"http://www.example.org/Department6-University0-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University397","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University742","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University191","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University900","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University46","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University666","graph":""}, + {"subject":"http://www.example.org/Department6-University1-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University918","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University70","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University146","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University167","graph":""}, + {"subject":"http://www.example.org/Department6-University1-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University64","graph":""}, + {"subject":"http://www.example.org/Department6-University1-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University845","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University681","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University640","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department6-University2-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University84","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University340","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University757","graph":""}, + {"subject":"http://www.example.org/Department6-University2-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department6-University2-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University566","graph":""}, + {"subject":"http://www.example.org/Department6-University2-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University144","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent138","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University520","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department6-University3-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University222","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University325","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University183","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University559","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University425","graph":""}, + {"subject":"http://www.example.org/Department6-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University358","graph":""}, + {"subject":"http://www.example.org/Department6-University3-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University110","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University192","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University464","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University179","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University316","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University306","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University868","graph":""}, + {"subject":"http://www.example.org/Department6-University4-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University414","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University929","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University903","graph":""}, + {"subject":"http://www.example.org/Department6-University4-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department6-University4-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University755","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University5","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University786","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University67","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University891","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University174","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department6-University5-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University391","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department6-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University574","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University948","graph":""}, + {"subject":"http://www.example.org/Department6-University6-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University143","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University697","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University505","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University393","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University785","graph":""}, + {"subject":"http://www.example.org/Department6-University6-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University543","graph":""}, + {"subject":"http://www.example.org/Department6-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department6-University6-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University275","graph":""}, + {"subject":"http://www.example.org/Department6-University6-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University957","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University976","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University622","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University669","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University519","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University389","graph":""}, + {"subject":"http://www.example.org/Department6-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University726","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent18","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department6-University7-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University885","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University392","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University727","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University207","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University621","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University532","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University672","graph":""}, + {"subject":"http://www.example.org/Department6-University8-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University749","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University420","graph":""}, + {"subject":"http://www.example.org/Department6-University8-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department6-University8-GraduateStudent58","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University210","graph":""}, + {"subject":"http://www.example.org/Department6-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University723","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University864","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University99","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University908","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University416","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University952","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University694","graph":""}, + {"subject":"http://www.example.org/Department6-University9-AssociateProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University872","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University590","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University638","graph":""}, + {"subject":"http://www.example.org/Department6-University9-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University181","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent30","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University784","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University825","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University996","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University718","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University725","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University184","graph":""}, + {"subject":"http://www.example.org/Department7-University0-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University365","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University452","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University618","graph":""}, + {"subject":"http://www.example.org/Department7-University0-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University270","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University220","graph":""}, + {"subject":"http://www.example.org/Department7-University0-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University345","graph":""}, + {"subject":"http://www.example.org/Department7-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University841","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University728","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University778","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University823","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University995","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University495","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University534","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University142","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent140","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University618","graph":""}, + {"subject":"http://www.example.org/Department7-University1-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University810","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent142","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University499","graph":""}, + {"subject":"http://www.example.org/Department7-University1-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University434","graph":""}, + {"subject":"http://www.example.org/Department7-University1-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University12","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University936","graph":""}, + {"subject":"http://www.example.org/Department7-University1-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University689","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent15","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University376","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent135","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University197","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department7-University2-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University581","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent95","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University363","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University349","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University253","graph":""}, + {"subject":"http://www.example.org/Department7-University2-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University609","graph":""}, + {"subject":"http://www.example.org/Department7-University2-GraduateStudent38","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University828","graph":""}, + {"subject":"http://www.example.org/Department7-University2-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University328","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University36","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University863","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent99","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University496","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent136","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University820","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University858","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University290","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University357","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent126","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University573","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University967","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent60","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University538","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University557","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University943","graph":""}, + {"subject":"http://www.example.org/Department7-University3-GraduateStudent33","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department7-University3-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University176","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University553","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent114","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University117","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University812","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department7-University4-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University291","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent89","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University71","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University625","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University225","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent59","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University641","graph":""}, + {"subject":"http://www.example.org/Department7-University4-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University958","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University132","graph":""}, + {"subject":"http://www.example.org/Department7-University4-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department7-University4-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University602","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University85","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University247","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent83","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University603","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University898","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent118","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department7-University5-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University65","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University651","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University444","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent103","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University320","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University668","graph":""}, + {"subject":"http://www.example.org/Department7-University5-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department7-University5-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University342","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University611","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University10","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University679","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University312","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University511","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University123","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University377","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University439","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University78","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University780","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University10","graph":""}, + {"subject":"http://www.example.org/Department7-University6-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department7-University6-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department7-University6-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University403","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University61","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University748","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University463","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University387","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University457","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University263","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University736","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University62","graph":""}, + {"subject":"http://www.example.org/Department7-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University4","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University842","graph":""}, + {"subject":"http://www.example.org/Department7-University7-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University55","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University902","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent35","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University217","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department7-University8-AssistantProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University111","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent145","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University647","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University961","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University166","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent51","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University642","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University738","graph":""}, + {"subject":"http://www.example.org/Department7-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University66","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University550","graph":""}, + {"subject":"http://www.example.org/Department7-University8-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University667","graph":""}, + {"subject":"http://www.example.org/Department7-University8-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University395","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University884","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssistantProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University182","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent90","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University28","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssistantProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University939","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University488","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent34","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University724","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University856","graph":""}, + {"subject":"http://www.example.org/Department7-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University997","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University548","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University435","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University145","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent117","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University201","graph":""}, + {"subject":"http://www.example.org/Department7-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department8-University0-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University599","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent112","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University682","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University243","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University506","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent85","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University241","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University698","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University301","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent134","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University305","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University636","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent75","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University700","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent142","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University521","graph":""}, + {"subject":"http://www.example.org/Department8-University0-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University889","graph":""}, + {"subject":"http://www.example.org/Department8-University0-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University998","graph":""}, + {"subject":"http://www.example.org/Department8-University1-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University256","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent86","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University487","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University582","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University817","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University555","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University264","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University859","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent104","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University527","graph":""}, + {"subject":"http://www.example.org/Department8-University1-FullProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University22","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University675","graph":""}, + {"subject":"http://www.example.org/Department8-University1-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University432","graph":""}, + {"subject":"http://www.example.org/Department8-University1-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University750","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University589","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent102","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University549","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University445","graph":""}, + {"subject":"http://www.example.org/Department8-University2-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University336","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University615","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University271","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University758","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University573","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University393","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University613","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University773","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent141","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University465","graph":""}, + {"subject":"http://www.example.org/Department8-University2-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University210","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University383","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent19","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University51","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University703","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University89","graph":""}, + {"subject":"http://www.example.org/Department8-University3-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University656","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University507","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University426","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University390","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University492","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University940","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent100","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University148","graph":""}, + {"subject":"http://www.example.org/Department8-University3-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University517","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University805","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent21","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University195","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University218","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University580","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University236","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent106","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University904","graph":""}, + {"subject":"http://www.example.org/Department8-University4-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University136","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent31","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University194","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent84","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University303","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent129","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University347","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University626","graph":""}, + {"subject":"http://www.example.org/Department8-University4-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University987","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University79","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent46","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University79","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent111","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University764","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University510","graph":""}, + {"subject":"http://www.example.org/Department8-University5-AssistantProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University674","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University447","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent115","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University542","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University540","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University910","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University895","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University375","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent28","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University835","graph":""}, + {"subject":"http://www.example.org/Department8-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University254","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University60","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University419","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University782","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent49","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University659","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University441","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University735","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University56","graph":""}, + {"subject":"http://www.example.org/Department8-University6-FullProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University451","graph":""}, + {"subject":"http://www.example.org/Department8-University6-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department8-University6-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssistantProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University518","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University276","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University979","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University422","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University311","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent29","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University361","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent123","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University653","graph":""}, + {"subject":"http://www.example.org/Department8-University7-AssociateProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University224","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University421","graph":""}, + {"subject":"http://www.example.org/Department8-University7-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University92","graph":""}, + {"subject":"http://www.example.org/Department8-University7-FullProfessor9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University980","graph":""}, + {"subject":"http://www.example.org/Department8-University7-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University103","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University429","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent36","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University525","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University634","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent16","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University179","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent72","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University966","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University480","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University35","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent56","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University576","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University473","graph":""}, + {"subject":"http://www.example.org/Department8-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University64","graph":""}, + {"subject":"http://www.example.org/Department8-University8-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University561","graph":""}, + {"subject":"http://www.example.org/Department8-University8-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University552","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent97","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University826","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University912","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University970","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent39","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University205","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent42","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University989","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University379","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent65","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University484","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University645","graph":""}, + {"subject":"http://www.example.org/Department8-University9-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University670","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent76","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University221","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University821","graph":""}, + {"subject":"http://www.example.org/Department8-University9-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University33","graph":""}, + {"subject":"http://www.example.org/Department8-University9-Lecturer2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University811","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent13","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University612","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University209","graph":""}, + {"subject":"http://www.example.org/Department9-University0-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University411","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University417","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University129","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University931","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University268","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent109","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University3","graph":""}, + {"subject":"http://www.example.org/Department9-University0-GraduateStudent62","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University866","graph":""}, + {"subject":"http://www.example.org/Department9-University0-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University747","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University977","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University34","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University839","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University213","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University86","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University544","graph":""}, + {"subject":"http://www.example.org/Department9-University1-AssociateProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University526","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University161","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent57","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University236","graph":""}, + {"subject":"http://www.example.org/Department9-University1-FullProfessor1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University37","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent52","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University586","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent101","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University147","graph":""}, + {"subject":"http://www.example.org/Department9-University1-GraduateStudent32","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University112","graph":""}, + {"subject":"http://www.example.org/Department9-University1-Lecturer1","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University751","graph":""}, + {"subject":"http://www.example.org/Department9-University2-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University373","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University256","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent40","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University428","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent70","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University596","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University861","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent25","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University965","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent44","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University776","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University886","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University935","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent23","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University856","graph":""}, + {"subject":"http://www.example.org/Department9-University2-GraduateStudent54","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University388","graph":""}, + {"subject":"http://www.example.org/Department9-University2-Lecturer0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University614","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent64","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University302","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent94","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University125","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University76","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University286","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent127","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University21","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent43","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University836","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent110","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University554","graph":""}, + {"subject":"http://www.example.org/Department9-University3-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University252","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent128","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University483","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University75","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University202","graph":""}, + {"subject":"http://www.example.org/Department9-University3-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University385","graph":""}, + {"subject":"http://www.example.org/Department9-University3-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University334","graph":""}, + {"subject":"http://www.example.org/Department9-University3-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University632","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent82","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University888","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University228","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent77","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University188","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University617","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University274","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent93","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University293","graph":""}, + {"subject":"http://www.example.org/Department9-University4-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University974","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent41","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University45","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent113","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University162","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent47","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University783","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent124","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University901","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University280","graph":""}, + {"subject":"http://www.example.org/Department9-University4-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University29","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent26","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University719","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent80","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University408","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent27","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University329","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University90","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University108","graph":""}, + {"subject":"http://www.example.org/Department9-University5-AssociateProfessor12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University261","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent92","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University135","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent96","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University887","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent137","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University688","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent24","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University23","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University725","graph":""}, + {"subject":"http://www.example.org/Department9-University5-FullProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University791","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent107","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University865","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University227","graph":""}, + {"subject":"http://www.example.org/Department9-University5-GraduateStudent55","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University470","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University405","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent14","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University969","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssistantProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University777","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent130","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University165","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent81","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University989","graph":""}, + {"subject":"http://www.example.org/Department9-University6-AssociateProfessor11","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent12","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University862","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University48","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent116","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University718","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent20","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University637","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent98","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University83","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent125","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University52","graph":""}, + {"subject":"http://www.example.org/Department9-University6-FullProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University304","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent17","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University528","graph":""}, + {"subject":"http://www.example.org/Department9-University6-GraduateStudent87","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University97","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University331","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssistantProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University620","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent66","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University840","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent119","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University222","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor0","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University287","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent91","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University716","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent69","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University244","graph":""}, + {"subject":"http://www.example.org/Department9-University7-AssociateProfessor4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University793","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent120","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University713","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent78","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University214","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University922","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent10","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University438","graph":""}, + {"subject":"http://www.example.org/Department9-University7-GraduateStudent79","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University578","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent132","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University120","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent9","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University203","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University461","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University272","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent63","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University975","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent73","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University857","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent53","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University827","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent105","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University630","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent108","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University745","graph":""}, + {"subject":"http://www.example.org/Department9-University8-AssociateProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University568","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent71","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University739","graph":""}, + {"subject":"http://www.example.org/Department9-University8-FullProfessor5","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University521","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent133","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University570","graph":""}, + {"subject":"http://www.example.org/Department9-University8-GraduateStudent74","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University926","graph":""}, + {"subject":"http://www.example.org/Department9-University8-Lecturer4","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University736","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent88","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University754","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent61","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University806","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor6","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University695","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssistantProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University216","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent68","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University370","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent37","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University418","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor2","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University959","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent22","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University523","graph":""}, + {"subject":"http://www.example.org/Department9-University9-AssociateProfessor8","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University327","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University186","graph":""}, + {"subject":"http://www.example.org/Department9-University9-FullProfessor7","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University822","graph":""}, + {"subject":"http://www.example.org/Department9-University9-GraduateStudent50","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University371","graph":""}, + {"subject":"http://www.example.org/Department9-University9-Lecturer3","predicate":"http://www.example.org/degreeFrom","object":"http://www.example.org/University230","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/parteval.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"_:n3-17076","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_7","graph":""}, + {"subject":"_:n3-17076","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-17077","graph":""}, + {"subject":"_:n3-17077","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_8","graph":""}, + {"subject":"_:n3-17077","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-17079.sk_7","predicate":"http://xmlns.com/foaf/0.1/nick","object":"_:n3-17079.sk_8","graph":"_:n3-17079"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17079","graph":"_:n3-17078"}, + {"subject":"_:n3-17078.sk_7","predicate":"http://xmlns.com/foaf/0.1/yahooChatID","object":"_:n3-17078.sk_8","graph":"_:n3-17078"}, + {"subject":"_:n3-17076","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17078","graph":""}, + {"subject":"_:n3-17080","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_9","graph":""}, + {"subject":"_:n3-17080","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","predicate":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","object":"_:n3-17081.sk_9","graph":"_:n3-17081"}, + {"subject":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","predicate":"_:n3-17082.sk_9","object":"_:n3-17082.sk_9","graph":"_:n3-17082"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17082","graph":"_:n3-17081"}, + {"subject":"_:n3-17080","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17081","graph":""}, + {"subject":"_:n3-17083","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_10","graph":""}, + {"subject":"_:n3-17083","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-17084.sk_10","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://schema.org/LifestyleModification","graph":"_:n3-17084"}, + {"subject":"_:n3-17085.sk_10","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://schema.org/MedicalTherapy","graph":"_:n3-17085"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17085","graph":"_:n3-17084"}, + {"subject":"_:n3-17083","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17084","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + _:n3-17076 : [ + {"subject":"_:n3-17076","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_7","graph":""}, + {"subject":"_:n3-17076","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-17077","graph":""}, + {"subject":"_:n3-17076","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17078","graph":""} + ] + _:.sk_7 : [ + {"subject":"_:n3-17076","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_7","graph":""} + ] + _:n3-17077 : [ + {"subject":"_:n3-17076","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"_:n3-17077","graph":""}, + {"subject":"_:n3-17077","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_8","graph":""}, + {"subject":"_:n3-17077","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""} + ] + _:.sk_8 : [ + {"subject":"_:n3-17077","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_8","graph":""} + ] + _:n3-17079.sk_7 : [ + {"subject":"_:n3-17079.sk_7","predicate":"http://xmlns.com/foaf/0.1/nick","object":"_:n3-17079.sk_8","graph":"_:n3-17079"} + ] + _:n3-17079.sk_8 : [ + {"subject":"_:n3-17079.sk_7","predicate":"http://xmlns.com/foaf/0.1/nick","object":"_:n3-17079.sk_8","graph":"_:n3-17079"} + ] + _:n3-17079 : [ + {"subject":"_:n3-17079.sk_7","predicate":"http://xmlns.com/foaf/0.1/nick","object":"_:n3-17079.sk_8","graph":"_:n3-17079"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17079","graph":"_:n3-17078"} + ] + _:n3-17078 : [ + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17079","graph":"_:n3-17078"}, + {"subject":"_:n3-17078.sk_7","predicate":"http://xmlns.com/foaf/0.1/yahooChatID","object":"_:n3-17078.sk_8","graph":"_:n3-17078"}, + {"subject":"_:n3-17076","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17078","graph":""} + ] + _:n3-17078.sk_7 : [ + {"subject":"_:n3-17078.sk_7","predicate":"http://xmlns.com/foaf/0.1/yahooChatID","object":"_:n3-17078.sk_8","graph":"_:n3-17078"} + ] + _:n3-17078.sk_8 : [ + {"subject":"_:n3-17078.sk_7","predicate":"http://xmlns.com/foaf/0.1/yahooChatID","object":"_:n3-17078.sk_8","graph":"_:n3-17078"} + ] + _:n3-17080 : [ + {"subject":"_:n3-17080","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_9","graph":""}, + {"subject":"_:n3-17080","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-17080","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17081","graph":""} + ] + _:.sk_9 : [ + {"subject":"_:n3-17080","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_9","graph":""} + ] + _:n3-17081.sk_9 : [ + {"subject":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","predicate":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","object":"_:n3-17081.sk_9","graph":"_:n3-17081"} + ] + _:n3-17081 : [ + {"subject":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","predicate":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","object":"_:n3-17081.sk_9","graph":"_:n3-17081"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17082","graph":"_:n3-17081"}, + {"subject":"_:n3-17080","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17081","graph":""} + ] + _:n3-17082.sk_9 : [ + {"subject":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","predicate":"_:n3-17082.sk_9","object":"_:n3-17082.sk_9","graph":"_:n3-17082"} + ] + _:n3-17082 : [ + {"subject":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","predicate":"_:n3-17082.sk_9","object":"_:n3-17082.sk_9","graph":"_:n3-17082"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17082","graph":"_:n3-17081"} + ] + _:n3-17083 : [ + {"subject":"_:n3-17083","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_10","graph":""}, + {"subject":"_:n3-17083","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest","object":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","graph":""}, + {"subject":"_:n3-17083","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17084","graph":""} + ] + _:.sk_10 : [ + {"subject":"_:n3-17083","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#first","object":"_:.sk_10","graph":""} + ] + _:n3-17084.sk_10 : [ + {"subject":"_:n3-17084.sk_10","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://schema.org/LifestyleModification","graph":"_:n3-17084"} + ] + _:n3-17084 : [ + {"subject":"_:n3-17084.sk_10","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://schema.org/LifestyleModification","graph":"_:n3-17084"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17085","graph":"_:n3-17084"}, + {"subject":"_:n3-17083","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17084","graph":""} + ] + _:n3-17085.sk_10 : [ + {"subject":"_:n3-17085.sk_10","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://schema.org/MedicalTherapy","graph":"_:n3-17085"} + ] + _:n3-17085 : [ + {"subject":"_:n3-17085.sk_10","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://schema.org/MedicalTherapy","graph":"_:n3-17085"}, + {"subject":"http://www.w3.org/1999/02/22-rdf-syntax-ns#nil","predicate":"http://www.w3.org/2000/10/swap/log#onNegativeSurface","object":"_:n3-17085","graph":"_:n3-17084"} + ] + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/peano.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** eam ** error(permission_error(modify,static_procedure,(,)/2),context(system:assertz/1,_2382))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/pol1.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"urn:example:n1","predicate":"urn:example:p1","object":"urn:example:n2","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"urn:example:n1","predicate":"urn:example:p1","object":"urn:example:n2","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/pol2.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#RubenD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://xmlns.com/foaf/0.1/Person","graph":""}, + {"subject":"http://example.org/ns#JosD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2006/vcard/ns#Individual","graph":""}, + {"subject":"http://example.org/ns#RubenD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2006/vcard/ns#Individual","graph":""}, + {"subject":"http://example.org/ns#JosD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://xmlns.com/foaf/0.1/Person","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#RubenD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://xmlns.com/foaf/0.1/Person","graph":""}, + {"subject":"http://example.org/ns#JosD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2006/vcard/ns#Individual","graph":""}, + {"subject":"http://example.org/ns#RubenD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://www.w3.org/2006/vcard/ns#Individual","graph":""}, + {"subject":"http://example.org/ns#JosD","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://xmlns.com/foaf/0.1/Person","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/rain.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#obs1","predicate":"http://example.org/ns#ascribed","object":"http://example.org/ns#Rain","graph":""}, + {"subject":"http://example.org/ns#obs1","predicate":"http://example.org/ns#ascribed","object":"http://example.org/ns#WetGrass","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#obs1","predicate":"http://example.org/ns#ascribed","object":"http://example.org/ns#Rain","graph":""}, + {"subject":"http://example.org/ns#obs1","predicate":"http://example.org/ns#ascribed","object":"http://example.org/ns#WetGrass","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/sdcoding.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** file:///data.nq ** illegal_token(char_code(/,47),line(1))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/slide28a.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#City","graph":""}, + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#HumanCommunity","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#City","graph":""}, + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#HumanCommunity","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/slide28b.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#City","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#City","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/slide32.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#City","graph":""}, + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#HumanCommunity","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#City","graph":""}, + {"subject":"http://example.org/ns#Ghent","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#HumanCommunity","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/slide33.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#xxx","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#aaa","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#xxx","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#aaa","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/skolem-machine.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** file:///data.nq ** illegal_token(char_code(/,47),line(1))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/socrates.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#Socrates","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#Man","graph":""}, + {"subject":"http://example.org/ns#Socrates","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#Human","graph":""}, + {"subject":"http://example.org/ns#Socrates","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#Mortal","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#Socrates","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#Man","graph":""}, + {"subject":"http://example.org/ns#Socrates","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#Human","graph":""}, + {"subject":"http://example.org/ns#Socrates","predicate":"http://www.w3.org/1999/02/22-rdf-syntax-ns#type","object":"http://example.org/ns#Mortal","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/turing.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** eam ** error(permission_error(modify,static_procedure,(,)/2),context(system:assertz/1,_7708))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/uniquant.n3] › using quad i/o + + expected two graphs to be isomorphic. + + Expected: + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Actual: + [ + + ] + + Missing Quads (that don't contain Blank Nodes): + [ + {"subject":"http://example.org/ns#beetle","predicate":"http://example.org/ns#is","object":"http://example.org/ns#beautiful","graph":""} + ] + + Additional Quads (that don't contain Blank Nodes): + [ + + ] + + Missing Blank Node Patterns: + + + Additional Blank Node Patterns: + + 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + 111 | .resolves + > 112 | .toBeRdfIsomorphic(dereference(subPath))); + | ^ + 113 | } else if (args.length === 1 && args[0] === '--query') { + 114 | it.skip('using quad i/o', () => expect( + 115 | n3reasoner( + + at Object.toBeRdfIsomorphic (node_modules/expect/build/index.js:166:22) + at Object. (__tests__/all-test.ts:112:18) + + ● Testing examples from eye repository › Testing examples for blogic › should run for [--blogic blogic/zebra.n3] › using quad i/o + + expect(received).resolves.toBeRdfIsomorphic() + + Received promise rejected instead of resolved + Rejected to value: [Error: Error while executing query: ** ERROR ** eam ** error(permission_error(modify,static_procedure,(,)/2),context(system:assertz/1,_2342))] + + 108 | && !argsArray.includes('blogic/socrates-star.n3') + 109 | ) { + > 110 | it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + | ^ + 111 | .resolves + 112 | .toBeRdfIsomorphic(dereference(subPath))); + 113 | } else if (args.length === 1 && args[0] === '--query') { + + at expect (node_modules/expect/build/index.js:105:15) + at Object. (__tests__/all-test.ts:110:42) + +Running coverage on untested files...Jest: "global" coverage threshold for statements (96%) not met: 71.31% +Jest: "global" coverage threshold for branches (88%) not met: 58.88% +Jest: "global" coverage threshold for lines (98%) not met: 71.31% +Jest: "global" coverage threshold for functions (93%) not met: 83.87% +Test Suites: 1 failed, 1 total +Tests: 47 failed, 109 skipped, 31 todo, 4 passed, 191 total +Snapshots: 0 total +Time: 27.21 s +Ran all test suites matching /__tests__\/all-test.ts/i. diff --git a/package-lock.json b/package-lock.json index 18d6e9c1..b9a66c56 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,6 +7,7 @@ "": { "name": "eyereasoner", "version": "0.0.0", + "hasInstallScript": true, "license": "MIT", "dependencies": { "@jeswr/pretty-turtle": "^1.4.0", diff --git a/package.json b/package.json index 9bcf1378..1d9cfa77 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "eye:prepare": "npm run eye:pvm", "eye:update": "ts-node scripts/update", "perf": "ts-node perf/socrates", - "clone:eye": "git clone https://github.com/eyereasoner/eye ./eye --depth 1 --branch $npm_package_config_eye_name", + "clone:eye": "rm -rf ./eye && git clone https://github.com/eyereasoner/eye ./eye --depth 1 --branch $npm_package_config_eye_name", "postinstall": "npm run clone:eye" }, "repository": { @@ -137,8 +137,8 @@ }, "config": { "eye": { - "name": "v3.4.8", - "url": "https://api.github.com/repos/eyereasoner/eye/releases/94399177" + "name": "v3.4.11", + "url": "https://api.github.com/repos/eyereasoner/eye/releases/94525898" } }, "dependencies": { From c386b5dbf9cf9606380123ef0616240e19a767f7 Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Mon, 6 Mar 2023 08:40:33 +1100 Subject: [PATCH 05/10] chore: update --- __tests__/all-test.ts | 20 +++++++++++++----- gps.n3 | 0 gps.ts | 19 +++++++++++++++++ n3.ts | 49 +++++++++++++++++++++++++++++++++++++++++++ zebra.n3 | 13 ++++++++++++ 5 files changed, 96 insertions(+), 5 deletions(-) create mode 100644 gps.n3 create mode 100644 gps.ts create mode 100644 n3.ts create mode 100644 zebra.n3 diff --git a/__tests__/all-test.ts b/__tests__/all-test.ts index 30c4a0bf..bc21c38d 100644 --- a/__tests__/all-test.ts +++ b/__tests__/all-test.ts @@ -5,6 +5,7 @@ import path from 'path'; import { Parser, Store, DataFactory as DF } from 'n3'; import { mapTerms } from 'rdf-terms'; import { n3reasoner } from '../dist'; +import type * as RDF from "@rdfjs/types"; import 'jest-rdf'; const examplesPath = path.join(__dirname, '..', 'eye', 'reasoning'); @@ -96,20 +97,29 @@ describe('Testing examples from eye repository', () => { // }); const args = argsArray.filter((arg) => arg.startsWith('--')); + + // Workaround for https://github.com/rdfjs/N3.js/issues/332 + function normalize(quad: RDF.Quad[], descope = false): RDF.Quad[] { + return quad + .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(descope ? /^(n3-\d+)?\./ : /^\./, '')) : term))); + } - function loadFiles(files: string[]) { - return [...new Store(files.map((file) => dereference(file)).flat())] + function loadFiles(files: string[], descope = false) { + return normalize([...new Store(files.map((file) => dereference(file)).flat())], descope) // Workaround for https://github.com/rdfjs/N3.js/issues/332 - .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(/^\./, '')) : term))); + // .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(descope ? /^(n3-\d+)?\./ : /^\./, '')) : term))); } if (args.length === 1 && args[0] === '--blogic' // Skip socrates-star because it contains '{|' and the PR to support that has not been merged in N3.js && !argsArray.includes('blogic/socrates-star.n3') ) { - it('using quad i/o', () => expect(n3reasoner(loadFiles(argsArray.slice(1)), undefined, { blogic: true })) + it('using quad i/o', () => expect( + n3reasoner(loadFiles(argsArray.slice(1), true), undefined, { blogic: true }) + .then(quads => normalize(quads, true)), + ) .resolves - .toBeRdfIsomorphic(dereference(subPath))); + .toBeRdfIsomorphic(normalize(dereference(subPath), true))); } else if (args.length === 1 && args[0] === '--query') { it.skip('using quad i/o', () => expect( n3reasoner( diff --git a/gps.n3 b/gps.n3 new file mode 100644 index 00000000..e69de29b diff --git a/gps.ts b/gps.ts new file mode 100644 index 00000000..dec01ce0 --- /dev/null +++ b/gps.ts @@ -0,0 +1,19 @@ +import { Parser, DataFactory as DF, Writer } from 'n3'; +import { mapTerms } from 'rdf-terms'; +import { write } from './dist/n3Writer.temp' +import { n3reasoner } from './dist'; +import * as fs from 'fs'; +import * as path from 'path'; + +const parser = new Parser({ format: 'text/n3' }); + +const data = fs.readFileSync(path.join(__dirname, 'gps.n3')).toString(); + +console.log( + write(parser.parse(data) +.map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace( /^(n3-\d+)?\./, '')) : term)))) +) + +n3reasoner(write(parser.parse(data) +.map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace( /^(n3-\d+)?\./, '')) : term)))) +, undefined, { blogic: true }); diff --git a/n3.ts b/n3.ts new file mode 100644 index 00000000..5f5c5ef6 --- /dev/null +++ b/n3.ts @@ -0,0 +1,49 @@ +import { Parser, DataFactory as DF, Writer } from 'n3'; +import { mapTerms } from 'rdf-terms'; +import { write } from './dist/n3Writer.temp' +import { n3reasoner } from './dist'; + +const parser = new Parser({ format: 'text/n3' }); +const writer = new Writer({ format: 'text/n3' }) + +// function transform(s: string) { +// return writer.quadsToString( +// parser.parse(s) +// .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace( /^(n3-\d+)?\./, '')) : term))) +// ) +// // return write(parser.parse(s) +// // .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace( /^(n3-\d+)?\./, '')) : term))) +// // ) +// } + +// let input = `@prefix log: . +// @prefix : . + +// (_:A _:B) :p { +// () log:onQuerySurface { +// _:A :pair (_:B). +// }. +// }.` + +// const quads = parser.parse(input) +// .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace( /^(n3-\d+)?\./, '')) : term))) + +// // input = transform(input) + +let input = ` +@prefix log: . +@prefix rdf: . +@prefix : . + +(_:A _:B) log:onNegativeSurface { + () log:onQuerySurface { + _:A :pair [ rdf:first _:B; rdf:rest rdf:nil ] . + _:A :pair (_:B) . + } . +} . +` + +// console.log(write(quads)) + +n3reasoner(input, undefined, { blogic: true }) +// \ No newline at end of file diff --git a/zebra.n3 b/zebra.n3 new file mode 100644 index 00000000..f9c3ef68 --- /dev/null +++ b/zebra.n3 @@ -0,0 +1,13 @@ +@prefix log: . +@prefix : . + +(_:A _:B) log:onNegativeSurface { + () log:onQuerySurface { + _:A :pair (_:B). + }. +}. + +# query +() log:onQuerySurface { + :a :b :c +}. From 08ac88e08e69f768c998c3521c08c4fcd906359f Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Mon, 6 Mar 2023 09:31:23 +1100 Subject: [PATCH 06/10] chore: add no-jest tests --- __tests__/all-test.ts | 7 +- __tests__/no-jest.ts | 146 ++++++++++++++++++++++++++++++++++++++++++ package.json | 4 +- 3 files changed, 153 insertions(+), 4 deletions(-) create mode 100644 __tests__/no-jest.ts diff --git a/__tests__/all-test.ts b/__tests__/all-test.ts index bc21c38d..cc16fa0f 100644 --- a/__tests__/all-test.ts +++ b/__tests__/all-test.ts @@ -32,6 +32,7 @@ const ignoreOutputs = [ 'preduction/palindrome-proof.n3', // This complains because of https://github.com/rdfjs/N3.js/issues/328 'preduction/palindrome2-proof.n3', + // This causes isomorphism timepouts ]; let i = 0; @@ -115,9 +116,11 @@ describe('Testing examples from eye repository', () => { && !argsArray.includes('blogic/socrates-star.n3') ) { it('using quad i/o', () => expect( - n3reasoner(loadFiles(argsArray.slice(1), true), undefined, { blogic: true }) + Promise.race([ + n3reasoner(loadFiles(argsArray.slice(1), true), undefined, { blogic: true }) .then(quads => normalize(quads, true)), - ) + new Promise((resolve, rej) => setTimeout(() => rej(new Error('timeout')), 10)), + ])) .resolves .toBeRdfIsomorphic(normalize(dereference(subPath), true))); } else if (args.length === 1 && args[0] === '--query') { diff --git a/__tests__/no-jest.ts b/__tests__/no-jest.ts new file mode 100644 index 00000000..c082684d --- /dev/null +++ b/__tests__/no-jest.ts @@ -0,0 +1,146 @@ +/* eslint-disable */ +// TODO: Remove the above before merging +import fs from 'fs'; +import path from 'path'; +import { Parser, Store, DataFactory as DF } from 'n3'; +import { mapTerms } from 'rdf-terms'; +import { n3reasoner } from '../dist'; +import type * as RDF from "@rdfjs/types"; +import { isomorphic } from 'rdf-isomorphic'; +// import 'jest-rdf'; + +const examplesPath = path.join(__dirname, '..', 'eye', 'reasoning'); +const expectedStart = 'eye "$@"'; +const cacheComponent = ' --wcache http://eyereasoner.github.io/eye/reasoning .. '; +const longStart = expectedStart + cacheComponent; + +const ignoreFolders = [ + // n3reasoner does not support extra images + 'dt', 'image', + // n3reasoner does not support multiquery + 'mq', +]; + +// These exceptions should eventually be removed +const ignoreOutputs = [ + // This complains because `$` is used as a term + 'bi/biA.n3', + // This complains because of https://github.com/rdfjs/N3.js/issues/328 + 'crypto/crypto-proof.n3', + // This just states `true .` but it's not a valid N3 file + 'entail/socrates-check.n3', + // This complains because of https://github.com/rdfjs/N3.js/issues/328 + 'preduction/palindrome-proof.n3', + // This complains because of https://github.com/rdfjs/N3.js/issues/328 + 'preduction/palindrome2-proof.n3', +]; + +let i = 0, j = 0; + +function readFile(subPath: string) { + return fs.readFileSync(path.join(examplesPath, subPath)).toString(); +} + +function dereference(subPath: string) { + const parser = new Parser({ format: 'text/n3', baseIRI: `http://eyereasoner.github.io/eye/reasoning${subPath}` }); + // @ts-expect-error + parser._supportsRDFStar = true; + return parser.parse(readFile(subPath)); +} + +async function main() { + for (const folder of fs.readdirSync(examplesPath)) { + if (fs.statSync(path.join(examplesPath, folder)).isDirectory()) { + for (const testCase of fs.readFileSync(path.join(examplesPath, folder, 'test')).toString().split('\n').slice(1) + .filter((x) => x !== '')) { + + // console.log('a') + // eslint-disable-next-line no-loop-func + + if (ignoreFolders.includes(folder)) { + continue + } else if (!testCase.startsWith(expectedStart)) { + throw new Error(`Found more test case without the expected start of ${expectedStart}`); + } + + let args_ = testCase.slice(testCase.startsWith(longStart) ? longStart.length : expectedStart.length); + + if (testCase.startsWith(longStart)) { + args_ = args_.replace(/http\:\/\/eyereasoner\.github\.io\/eye\/reasoning\//g, ''); + args_ = args_.replace(/ --turtle/g, ''); + } + + let argsArray = args_.trim().split(' '); + + if (argsArray[argsArray.length - 2] !== '--output') { + throw new Error(`Expected --output to be the last argument on ${args_}`); + } + + const subPath = path.join(folder, argsArray[argsArray.length - 1]); + + argsArray = argsArray.slice(0, -2); + + // Skip if the output is not a valid N3 file + if (ignoreOutputs.includes(subPath) || !subPath.endsWith('n3')) { + // eslint-disable-next-line no-loop-func + continue + } + + // it('using string i/o', () => { + + // }); + + // (argsArray[0] === '--blogic' && !argsArray.includes('blogic/socrates-star.n3') ? it : it.skip)('using string i/o', () => { + // return expect(n3reasoner(argsArray.slice(1).map(file => readFile(file)).join('\n'), undefined, { blogic: true, outputType: 'quads' })) + // .resolves + // .toBeRdfIsomorphic(dereference(subPath)); + // }); + + const args = argsArray.filter((arg) => arg.startsWith('--')); + + // Workaround for https://github.com/rdfjs/N3.js/issues/332 + function normalize(quad: RDF.Quad[], descope = false): RDF.Quad[] { + return quad + .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(descope ? /^(n3-\d+)?\./ : /^\./, '')) : term))); + } + + function loadFiles(files: string[], descope = false) { + return normalize([...new Store(files.map((file) => dereference(file)).flat())], descope) + // Workaround for https://github.com/rdfjs/N3.js/issues/332 + // .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(descope ? /^(n3-\d+)?\./ : /^\./, '')) : term))); + } + + // console.log('b', args.) + + + + if (args.length === 1 && args[0] === '--blogic' + // Skip socrates-star because it contains '{|' and the PR to support that has not been merged in N3.js + && !argsArray.includes('blogic/socrates-star.n3') + && !argsArray.includes('blogic/bmt.n3') + ) { + console.log('running', argsArray.slice(1), subPath) + i += 1; + try { + const res = isomorphic( + await n3reasoner(loadFiles(argsArray.slice(1), true), undefined, { blogic: true }).then(quads => normalize(quads, true)), + dereference(subPath) + ) + console.log(res) + + if (res) { + j += 1; + } + } catch (e) { + console.error(e) + } + + } + } + } + } + + console.log(`${j}/${i}`) +} + +main(); diff --git a/package.json b/package.json index 1d9cfa77..d7af5bb4 100644 --- a/package.json +++ b/package.json @@ -137,8 +137,8 @@ }, "config": { "eye": { - "name": "v3.4.11", - "url": "https://api.github.com/repos/eyereasoner/eye/releases/94525898" + "name": "v3.4.13", + "url": "https://api.github.com/repos/eyereasoner/eye/releases/94558882" } }, "dependencies": { From 142ffee6a35caad599705673c4105d87211a4cf9 Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Mon, 6 Mar 2023 10:30:05 +1100 Subject: [PATCH 07/10] chore: use patched version of N3.js --- __tests__/no-jest.ts | 12 ++++++++++-- lib/n3Writer.temp.ts | 29 +++++------------------------ package-lock.json | 7 ++++--- package.json | 2 +- 4 files changed, 20 insertions(+), 30 deletions(-) diff --git a/__tests__/no-jest.ts b/__tests__/no-jest.ts index c082684d..86c108b6 100644 --- a/__tests__/no-jest.ts +++ b/__tests__/no-jest.ts @@ -7,6 +7,7 @@ import { mapTerms } from 'rdf-terms'; import { n3reasoner } from '../dist'; import type * as RDF from "@rdfjs/types"; import { isomorphic } from 'rdf-isomorphic'; +import { write } from '../dist/n3Writer.temp'; // import 'jest-rdf'; const examplesPath = path.join(__dirname, '..', 'eye', 'reasoning'); @@ -121,17 +122,24 @@ async function main() { ) { console.log('running', argsArray.slice(1), subPath) i += 1; + let input: RDF.Quad[] | undefined try { + input = loadFiles(argsArray.slice(1), true); + const output = await n3reasoner(loadFiles(argsArray.slice(1), true), undefined, { blogic: true }).then(quads => normalize(quads, true)); + const expected = normalize(dereference(subPath), true); const res = isomorphic( - await n3reasoner(loadFiles(argsArray.slice(1), true), undefined, { blogic: true }).then(quads => normalize(quads, true)), - dereference(subPath) + output, + expected ) console.log(res) if (res) { j += 1; + } else { + } } catch (e) { + console.log('error on input', write(input!)) console.error(e) } diff --git a/lib/n3Writer.temp.ts b/lib/n3Writer.temp.ts index 85e4f1d4..f6336cb2 100644 --- a/lib/n3Writer.temp.ts +++ b/lib/n3Writer.temp.ts @@ -10,40 +10,21 @@ function isQuoted(term: Term, store: Store) { export class N3Writer { private _writer: any = new Writer(); - _encodePredicate(term: Term): string { - if (term.termType === 'NamedNode') { - switch (term.value) { - case 'http://www.w3.org/2000/10/swap/log#implies': - return '=>'; - case 'http://www.w3.org/1999/02/22-rdf-syntax-ns#type': - return 'a' - } - } - return this._writer._encodeIriOrBlank(term); - } - - _encodeSubject(entity: Term, store: Store): string { - if (isQuoted(entity, store)) { - return `{${this.quadsStoreToString(store, entity)}}` - } - return this._writer._encodeSubject(entity) - } - - _encodeObject(entity: Term, store: Store): string { + _encodeTerm(entity: Term, store: Store): string { if (isQuoted(entity, store)) { return `{${this.quadsStoreToString(store, entity)}}` } - return this._writer._encodeObject(entity) + return this._writer._encodeTerm(entity) } // ### `quadToString` serializes a quad as a string quadToString(t: Quad, store: Store): string { return `${ - this._encodeSubject(t.subject, store) + this._encodeTerm(t.subject, store) } ${ - this._encodePredicate(t.predicate as any) + this._encodeTerm(t.predicate, store) } ${ - this._encodeObject(t.object, store) + this._encodeTerm(t.object, store) }`; } diff --git a/package-lock.json b/package-lock.json index b9a66c56..3c0cbd48 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,7 +11,7 @@ "license": "MIT", "dependencies": { "@jeswr/pretty-turtle": "^1.4.0", - "n3": "^1.16.3", + "n3": "github:rdfjs/N3.js#c7540c4c5cd4fe40447dd90a683e1ea878e75519", "swipl-wasm": "^3.1.0" }, "bin": { @@ -8758,8 +8758,9 @@ }, "node_modules/n3": { "version": "1.16.3", - "resolved": "https://registry.npmjs.org/n3/-/n3-1.16.3.tgz", - "integrity": "sha512-9caLSZuMW1kdlPxEN4ka6E4E8a5QKoZ2emxpW+zHMofI+Bo92nJhN//wNub15S5T9I4c6saEqdGEu+YXJqMZVA==", + "resolved": "git+ssh://git@github.com/rdfjs/N3.js.git#c7540c4c5cd4fe40447dd90a683e1ea878e75519", + "integrity": "sha512-QEMB1/C5wn+THXWsFhob+NhhT8XcTtQk4g0hUAJvMQXHDeaDHwV0bPDv+AiVUbaMoKZFpIPz5dM60WbnL3OHOQ==", + "license": "MIT", "dependencies": { "queue-microtask": "^1.1.2", "readable-stream": "^4.0.0" diff --git a/package.json b/package.json index d7af5bb4..3c4c204f 100644 --- a/package.json +++ b/package.json @@ -143,7 +143,7 @@ }, "dependencies": { "@jeswr/pretty-turtle": "^1.4.0", - "n3": "^1.16.3", + "n3": "github:rdfjs/N3.js#c7540c4c5cd4fe40447dd90a683e1ea878e75519", "swipl-wasm": "^3.1.0" }, "peerDependencies": { From 6313c649e01808cdc3d94aeb60d05843540c7141 Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Mon, 6 Mar 2023 10:38:28 +1100 Subject: [PATCH 08/10] chore: skip lubm for speed and only log failures --- __tests__/no-jest.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/__tests__/no-jest.ts b/__tests__/no-jest.ts index 86c108b6..1005a343 100644 --- a/__tests__/no-jest.ts +++ b/__tests__/no-jest.ts @@ -119,8 +119,8 @@ async function main() { // Skip socrates-star because it contains '{|' and the PR to support that has not been merged in N3.js && !argsArray.includes('blogic/socrates-star.n3') && !argsArray.includes('blogic/bmt.n3') + && !argsArray.includes('lubm/facts.ttl') ) { - console.log('running', argsArray.slice(1), subPath) i += 1; let input: RDF.Quad[] | undefined try { @@ -131,12 +131,11 @@ async function main() { output, expected ) - console.log(res) if (res) { j += 1; } else { - + console.log(`Expected ${output.length} quads recieved ${expected.length} for ${subPath}`) } } catch (e) { console.log('error on input', write(input!)) From e0dffd0665ebdbbb4a33b6a1a31d81b3ebc83db3 Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Mon, 6 Mar 2023 11:07:06 +1100 Subject: [PATCH 09/10] chore: update rdf-star patching --- __tests__/no-jest.ts | 18 +++++++++++++++++- category.n3 | 36 ++++++++++++++++++++++++++++++++++++ equal.n3 | 24 ++++++++++++++++++++++++ 3 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 category.n3 create mode 100644 equal.n3 diff --git a/__tests__/no-jest.ts b/__tests__/no-jest.ts index 1005a343..7ef74f5f 100644 --- a/__tests__/no-jest.ts +++ b/__tests__/no-jest.ts @@ -8,6 +8,7 @@ import { n3reasoner } from '../dist'; import type * as RDF from "@rdfjs/types"; import { isomorphic } from 'rdf-isomorphic'; import { write } from '../dist/n3Writer.temp'; +import { write as writePretty } from '@jeswr/pretty-turtle'; // import 'jest-rdf'; const examplesPath = path.join(__dirname, '..', 'eye', 'reasoning'); @@ -98,11 +99,23 @@ async function main() { // }); const args = argsArray.filter((arg) => arg.startsWith('--')); + + function descopeQuad(quad: RDF.Quad, descope = false): RDF.Quad { + return mapTerms(quad, (term) => { + if (term.termType === 'BlankNode') { + return DF.blankNode(term.value.replace(descope ? /^(n3-\d+)?\./ : /^\./, '')); + } + if (term.termType === 'Quad') { + return descopeQuad(term as RDF.Quad, descope); + } + return term; + }); + } // Workaround for https://github.com/rdfjs/N3.js/issues/332 function normalize(quad: RDF.Quad[], descope = false): RDF.Quad[] { return quad - .map((quad) => mapTerms(quad, (term) => (term.termType === 'BlankNode' ? DF.blankNode(term.value.replace(descope ? /^(n3-\d+)?\./ : /^\./, '')) : term))); + .map((quad) => descopeQuad(quad, descope)); } function loadFiles(files: string[], descope = false) { @@ -120,6 +133,7 @@ async function main() { && !argsArray.includes('blogic/socrates-star.n3') && !argsArray.includes('blogic/bmt.n3') && !argsArray.includes('lubm/facts.ttl') + // && subPath === 'blogic/equal-answer.n3' ) { i += 1; let input: RDF.Quad[] | undefined @@ -136,6 +150,8 @@ async function main() { j += 1; } else { console.log(`Expected ${output.length} quads recieved ${expected.length} for ${subPath}`) + // console.log('expected', await writePretty(expected!, { format: 'text/n3' })) + // console.log('recieved', await writePretty(output!, { format: 'text/n3' })) } } catch (e) { console.log('error on input', write(input!)) diff --git a/category.n3 b/category.n3 new file mode 100644 index 00000000..3383d278 --- /dev/null +++ b/category.n3 @@ -0,0 +1,36 @@ +@prefix log: . +@prefix : . +@prefix rdf: . + +# sample data +:n1 :p1 :n2; a :C1. +:n1 :p2 :n3. +:n1 :p3 :n4. +:n2 :p2 :n3. +:n3 :p4 :n5; a :C2. +:n3 :p5 :n6. +:n3 :p2 :n1. +:n6 :p6 :n7; a :C3. + +# categorize +(_:A _:B _:C _:D) log:onNegativeSurface { + _:A a _:B. + _:A _:C _:D. + rdf:nil log:onNegativeSurface { + <<_:A _:C _:D>> :category _:B. + }. +}. + +(_:A _:B _:C _:D _:E _:F _:G _:H) log:onNegativeSurface { + <<_:A _:B _:C>> :category _:D. + _:C _:E _:F. + (_:G {_:C a _:G} ()) log:collectAllIn _:H. + () log:onNegativeSurface { + <<_:C _:E _:F>> :category _:D. + }. +}. + +# query +(_:A _:B) log:onQuerySurface { + _:A :category _:B. +}. diff --git a/equal.n3 b/equal.n3 new file mode 100644 index 00000000..60ff21d2 --- /dev/null +++ b/equal.n3 @@ -0,0 +1,24 @@ +@prefix : . +@prefix log: . +@prefix rdf: . + +(_:S1 _:V1 _:S2 _:V2) log:onNegativeSurface { + _:S1 log:equalTo { + (_:V1) log:onNeutralSurface { + _:V1 a :C . + } . + } . + _:S2 log:equalTo { + (_:V2) log:onNeutralSurface { + _:V2 a :C . + } . + } . + _:S1 log:equalTo _:S2 . + () log:onNegativeSurface { + :test :is true . + } . +} . + +() log:onQuerySurface { + :test :is true . +} . From 98933c25ff0e7688c3e4e49afd0c8777b62e0bfb Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Mon, 6 Mar 2023 11:17:48 +1100 Subject: [PATCH 10/10] chore: fix order of expected and ouput --- __tests__/no-jest.ts | 4 +- category.n3 | 87 ++++++++++++++++++++++++++------------------ 2 files changed, 53 insertions(+), 38 deletions(-) diff --git a/__tests__/no-jest.ts b/__tests__/no-jest.ts index 7ef74f5f..4af47e1c 100644 --- a/__tests__/no-jest.ts +++ b/__tests__/no-jest.ts @@ -133,7 +133,7 @@ async function main() { && !argsArray.includes('blogic/socrates-star.n3') && !argsArray.includes('blogic/bmt.n3') && !argsArray.includes('lubm/facts.ttl') - // && subPath === 'blogic/equal-answer.n3' + // && subPath === 'blogic/category-answer.n3' ) { i += 1; let input: RDF.Quad[] | undefined @@ -149,7 +149,7 @@ async function main() { if (res) { j += 1; } else { - console.log(`Expected ${output.length} quads recieved ${expected.length} for ${subPath}`) + console.log(`Expected ${expected.length} quads recieved ${output.length} for ${subPath}`) // console.log('expected', await writePretty(expected!, { format: 'text/n3' })) // console.log('recieved', await writePretty(output!, { format: 'text/n3' })) } diff --git a/category.n3 b/category.n3 index 3383d278..143c8251 100644 --- a/category.n3 +++ b/category.n3 @@ -1,36 +1,51 @@ -@prefix log: . -@prefix : . -@prefix rdf: . - -# sample data -:n1 :p1 :n2; a :C1. -:n1 :p2 :n3. -:n1 :p3 :n4. -:n2 :p2 :n3. -:n3 :p4 :n5; a :C2. -:n3 :p5 :n6. -:n3 :p2 :n1. -:n6 :p6 :n7; a :C3. - -# categorize -(_:A _:B _:C _:D) log:onNegativeSurface { - _:A a _:B. - _:A _:C _:D. - rdf:nil log:onNegativeSurface { - <<_:A _:C _:D>> :category _:B. - }. -}. - -(_:A _:B _:C _:D _:E _:F _:G _:H) log:onNegativeSurface { - <<_:A _:B _:C>> :category _:D. - _:C _:E _:F. - (_:G {_:C a _:G} ()) log:collectAllIn _:H. - () log:onNegativeSurface { - <<_:C _:E _:F>> :category _:D. - }. -}. - -# query -(_:A _:B) log:onQuerySurface { - _:A :category _:B. -}. + . + . + . + . + . + . + . + . + . + . + . +_:n3-0 _:A . +_:n3-0 _:n3-1 . +_:n3-0 {_:A _:B . +_:A _:C _:D . + {<<_:A _:C _:D>> _:B . } . } . +_:n3-1 _:B . +_:n3-1 _:n3-2 . +_:n3-2 _:C . +_:n3-2 _:n3-3 . +_:n3-3 _:D . +_:n3-3 . +_:n3-6 _:A . +_:n3-6 _:n3-7 . +_:n3-6 {_:C _:E _:F . + {<<_:C _:E _:F>> _:D . } . +<<_:A _:B _:C>> _:D . +_:n3-15 _:G . +_:n3-15 _:n3-17 . +_:n3-15 _:H . +_:n3-17 . +_:n3-17 . } . +_:n3-7 _:B . +_:n3-7 _:n3-8 . +_:n3-8 _:C . +_:n3-8 _:n3-9 . +_:n3-9 _:D . +_:n3-9 _:n3-10 . +_:n3-10 _:E . +_:n3-10 _:n3-11 . +_:n3-11 _:F . +_:n3-11 _:n3-12 . +_:n3-12 _:G . +_:n3-12 _:n3-13 . +_:n3-13 _:H . +_:n3-13 . +_:n3-19 _:A . +_:n3-19 _:n3-20 . +_:n3-19 {_:A _:B . } . +_:n3-20 _:B . +_:n3-20 . \ No newline at end of file